m-trieu commented on code in PR #34367: URL: https://github.com/apache/beam/pull/34367#discussion_r2073836342
########## runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/windmill/client/AbstractWindmillStream.java: ########## @@ -195,6 +228,12 @@ private void startStream() { onNewStream(); if (clientClosed) { halfClose(); + } else { + // If the stream is alive, schedule a future restart. We also attempt to cancel any + // pending restarts that have not run since they are used for preventing + // DEADLINE_EXCEEDED. Everytime the stream restarts, this deadline restarts so we want + // the stream restart to run whenever we restart the stream + streamTTL. + scheduleRestart(); 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