bharatviswa504 commented on a change in pull request #314: HDDS-2555. Handle
InterruptedException in XceiverClientGrpc
URL: https://github.com/apache/hadoop-ozone/pull/314#discussion_r364043895
##########
File path:
hadoop-hdds/client/src/main/java/org/apache/hadoop/hdds/scm/XceiverClientGrpc.java
##########
@@ -231,8 +231,11 @@ public ContainerCommandResponseProto sendCommand(
try {
return sendCommandWithTraceIDAndRetry(request, null).
getResponse().get();
- } catch (ExecutionException | InterruptedException e) {
+ } catch (ExecutionException e) {
throw new IOException("Failed to execute command " + request, e);
+ } catch (InterruptedException e) {
+ Thread.currentThread().interrupt();
Review comment:
This is still not addressed?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]