denis-chudov commented on code in PR #5915: URL: https://github.com/apache/ignite-3/pull/5915#discussion_r2152108556
########## modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaManager.java: ########## @@ -446,7 +449,13 @@ private void handleReplicaRequest(ReplicaRequest request, ClusterNode sender, @N private static boolean indicatesUnexpectedProblem(Throwable ex) { Throwable unwrapped = unwrapCause(ex); return !(unwrapped instanceof ExpectedReplicationException) - && !hasCause(ex, NodeStoppingException.class, TrackerClosedException.class, ComponentStoppingException.class); + && !hasCause( + ex, + NodeStoppingException.class, Review Comment: here is the different set of classes, I wouldn't be sure to change it here -- 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