anton-vinogradov commented on a change in pull request #9807: URL: https://github.com/apache/ignite/pull/9807#discussion_r811130700
########## File path: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/consistency/GridNearReadRepairAbstractFuture.java ########## @@ -93,16 +89,25 @@ protected final IgniteInternalTx tx; /** Primaries per key. */ - protected volatile Map<KeyCacheObject, ClusterNode> primaries; + protected final Map<KeyCacheObject, ClusterNode> primaries = new HashMap<>(); /** Strategy. */ protected final ReadRepairStrategy strategy; + /** Remap count. */ + protected volatile int remapCnt; Review comment: Just moved closer to canRemap. Can we keep it so? -- 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