KAFKA-10757: Fix compilation failure in StreamThreadTest (#9636)

Add missing `null` to `TaskManager` constructor.

Reviewers: Ismael Juma <ismael@juma.me.uk>
This commit is contained in:
dengziming 2020-11-21 13:53:34 +08:00 committed by GitHub
parent 351a22a12e
commit 502a544ee7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -756,7 +756,7 @@ public class StreamThreadTest {
new StreamsMetricsImpl(metrics, CLIENT_ID, StreamsConfig.METRICS_LATEST, mockTime); new StreamsMetricsImpl(metrics, CLIENT_ID, StreamsConfig.METRICS_LATEST, mockTime);
final AtomicBoolean committed = new AtomicBoolean(false); final AtomicBoolean committed = new AtomicBoolean(false);
final TaskManager taskManager = new TaskManager( final TaskManager taskManager = new TaskManager(null,
null, null,
null, null,
null, null,