This is an automated email from the ASF dual-hosted git repository.
rpuch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new c0f9afd3701 IGNITE-25558 Suppress ComponentStoppingException logging
in ReplicaManager (#5952)
c0f9afd3701 is described below
commit c0f9afd370169a133e88a002b05746d1c267a916
Author: Roman Puchkovskiy <[email protected]>
AuthorDate: Mon Jun 2 15:37:39 2025 +0400
IGNITE-25558 Suppress ComponentStoppingException logging in ReplicaManager
(#5952)
---
.../java/org/apache/ignite/internal/replicator/ReplicaManager.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaManager.java
b/modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaManager.java
index 92785388851..22cd09a300c 100644
---
a/modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaManager.java
+++
b/modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaManager.java
@@ -444,7 +444,8 @@ public class ReplicaManager extends
AbstractEventProducer<LocalReplicaEvent, Loc
private static boolean indicatesUnexpectedProblem(Throwable ex) {
Throwable unwrapped = unwrapCause(ex);
- return !(unwrapped instanceof ExpectedReplicationException) &&
!(unwrapped instanceof TrackerClosedException);
+ return !(unwrapped instanceof ExpectedReplicationException)
+ && !hasCause(ex, NodeStoppingException.class,
TrackerClosedException.class, ComponentStoppingException.class);
}
/**