m-trieu commented on code in PR #31902:
URL: https://github.com/apache/beam/pull/31902#discussion_r1757359870


##########
runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/streaming/harness/FanOutStreamingEngineWorkerHarness.java:
##########
@@ -125,23 +127,22 @@ private FanOutStreamingEngineWorkerHarness(
     this.connections = new 
AtomicReference<>(StreamingEngineConnectionState.EMPTY);
     this.channelCachingStubFactory = channelCachingStubFactory;
     this.dispatcherClient = dispatcherClient;
-    this.isBudgetRefreshPaused = new AtomicBoolean(false);
     this.getWorkerMetadataThrottleTimer = new ThrottleTimer();
+    this.windmillStreamStarter =
+        Executors.newCachedThreadPool(
+            new 
ThreadFactoryBuilder().setNameFormat(STREAM_STARTER_THREAD).build());
+    this.windmillStreamCloser =
+        Executors.newCachedThreadPool(
+            new 
ThreadFactoryBuilder().setNameFormat(STREAM_CLOSER_THREAD).build());

Review Comment:
   done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@beam.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to