sashapolo commented on code in PR #4543: URL: https://github.com/apache/ignite-3/pull/4543#discussion_r1797218131
########## modules/raft/src/main/java/org/apache/ignite/internal/raft/RaftGroupServiceImpl.java: ########## @@ -608,16 +607,20 @@ private <R extends NetworkMessage> void sendWithRetry( err == null ? null : err.getMessage()); } - if (err != null) { - handleThrowable(err, peer, request, requestFactory, stopTime, fut, retryCount); - } else if (resp instanceof ErrorResponse) { - handleErrorResponse((ErrorResponse) resp, peer, request, requestFactory, stopTime, fut, retryCount); - } else if (resp instanceof SMErrorResponse) { - handleSmErrorResponse((SMErrorResponse) resp, fut); - } else { - leader = peer; // The OK response was received from a leader. - - fut.complete((R) resp); + try { + if (err != null) { + handleThrowable(err, peer, request, requestFactory, stopTime, fut, retryCount); + } else if (resp instanceof ErrorResponse) { + handleErrorResponse((ErrorResponse) resp, peer, request, requestFactory, stopTime, fut, retryCount); + } else if (resp instanceof SMErrorResponse) { + handleSmErrorResponse((SMErrorResponse) resp, fut); + } else { + leader = peer; // The OK response was received from a leader. + + fut.complete((R) resp); + } + } catch (Throwable e) { Review Comment: It's a remnant of one of the previous approaches. Maybe it's not needed now, but I would prefer to leave it, because currently any of the exceptions that happen *inside* the error handling code will be ignored -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org