m-trieu commented on code in PR #34367:
URL: https://github.com/apache/beam/pull/34367#discussion_r2073648381
##########
runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/windmill/client/AbstractWindmillStream.java:
##########
@@ -161,14 +190,15 @@ protected final synchronized boolean trySend(RequestT
request)
try {
requestObserver.onNext(request);
return true;
- } catch (ResettableThrowingStreamObserver.StreamClosedException e) {
+ } catch (StreamClosedException e) {
// Stream was broken, requests may be retried when stream is reopened.
}
return false;
}
@Override
+ @SuppressWarnings("FutureReturnValueIgnored")
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]