sergeyuttsel commented on code in PR #1369:
URL: https://github.com/apache/ignite-3/pull/1369#discussion_r1034575460
##########
modules/replicator/src/main/java/org/apache/ignite/internal/replicator/ReplicaManager.java:
##########
@@ -82,6 +85,9 @@ public class ReplicaManager implements IgniteComponent {
/** Replicas. */
private final ConcurrentHashMap<ReplicationGroupId, Replica> replicas =
new ConcurrentHashMap<>();
+ /** Replicas which was requested but have not started yet. */
+ private final Map<ReplicationGroupId, CompletableFuture<Void>>
pendingReplicas = new ConcurrentHashMap<>();
Review Comment:
I removed the pendingReplicas.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]