Skip to content

Commit a7504af

Browse files
committed
IGNITE-24963 Fix retriable
1 parent aa903e6 commit a7504af

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

modules/replicator/src/main/java/org/apache/ignite/internal/replicator/exception/ReplicaUnavailableException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@
2121

2222
import org.apache.ignite.internal.network.InternalClusterNode;
2323
import org.apache.ignite.internal.replicator.ReplicationGroupId;
24+
import org.apache.ignite.tx.RetriableTransactionException;
2425

2526
/**
2627
* The exception is thrown when a replica is not ready to handle a request.
2728
*/
28-
public class ReplicaUnavailableException extends ReplicationException {
29+
public class ReplicaUnavailableException extends ReplicationException implements RetriableTransactionException {
2930
private static final long serialVersionUID = 9142077461528136559L;
3031

3132
/**

modules/replicator/src/main/java/org/apache/ignite/internal/replicator/exception/ReplicationException.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
/**
2929
* The exception is thrown when some issue happened during a replication.
3030
*/
31-
public class ReplicationException extends IgniteInternalException implements RetriableTransactionException,
32-
RetriableReplicaRequestException {
31+
public class ReplicationException extends IgniteInternalException implements RetriableReplicaRequestException {
3332
/**
3433
* Constructor.
3534
*

0 commit comments

Comments
 (0)