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


##########
runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/windmill/client/AbstractWindmillStream.java:
##########
@@ -120,21 +147,23 @@ protected AbstractWindmillStream(
     this.isHealthCheckScheduled = new AtomicBoolean(false);
     this.finishLatch = new CountDownLatch(1);
     this.logger = logger;
+    this.sleeper = Sleeper.DEFAULT;
+    this.debugMetrics = StreamDebugMetrics.create();
+    this.streamTTL = streamTTL;
     this.requestObserver =
         new ResettableThrowingStreamObserver<>(
             () ->
                 streamObserverFactory.from(
                     clientFactory,
                     new AbstractWindmillStream<RequestT, 
ResponseT>.ResponseObserver()),
             logger);
-    this.sleeper = Sleeper.DEFAULT;
-    this.debugMetrics = StreamDebugMetrics.create();
   }
 
-  private static String createThreadName(String streamType, String 
backendWorkerToken) {
+  private static String createThreadName(
+      String threadType, String streamType, String backendWorkerToken) {

Review Comment:
   removed



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to