rpuch commented on code in PR #5213: URL: https://github.com/apache/ignite-3/pull/5213#discussion_r1952664150
########## modules/partition-replicator/src/main/java/org/apache/ignite/internal/partition/replicator/TxFinishReplicaRequestHandler.java: ########## @@ -146,18 +145,18 @@ public CompletableFuture<TransactionResult> handle(TxFinishReplicaRequest reques } } - private static Map<TablePartitionId, String> asTablePartitionIdStringMap(Map<TablePartitionIdMessage, String> messages) { - var result = new HashMap<TablePartitionId, String>(IgniteUtils.capacity(messages.size())); + private static Map<ReplicationGroupId, String> asReplicationGroupIdToStringMap(Map<ReplicationGroupIdMessage, String> messages) { + var result = new HashMap<ReplicationGroupId, String>(IgniteUtils.capacity(messages.size())); - for (Entry<TablePartitionIdMessage, String> e : messages.entrySet()) { - result.put(e.getKey().asTablePartitionId(), e.getValue()); + for (Entry<ReplicationGroupIdMessage, String> e : messages.entrySet()) { + result.put(e.getKey().asReplicationGroupId(), e.getValue()); } return result; } private CompletableFuture<TransactionResult> finishAndCleanup( - Map<TablePartitionId, String> enlistedPartitions, + Map<ReplicationGroupId, String> enlistedPartitions, Review Comment: Yes, exactly -- 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