mirror of https://github.com/apache/kafka.git
				
				
				
			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:
		
							parent
							
								
									351a22a12e
								
							
						
					
					
						commit
						502a544ee7
					
				|  | @ -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, | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue