sanpwc commented on code in PR #5407:
URL: https://github.com/apache/ignite-3/pull/5407#discussion_r1995615748


##########
modules/replicator/src/testFixtures/java/org/apache/ignite/internal/replicator/ReplicaTestUtils.java:
##########
@@ -37,29 +39,31 @@ public final class ReplicaTestUtils {
      * Returns raft-client if exists.
      *
      * @param node Ignite node that hosts the raft-client.
-     * @param tableId Desired table's ID.
+     * @param tableOrZoneId Desired table or zone ID.
      * @param partId Desired partition's ID.
      *
      * @return Optional with raft-client if exists on the node by given 
identifiers.
      */
     @TestOnly
-    public static Optional<RaftGroupService> getRaftClient(Ignite node, int 
tableId, int partId) {
-        return getRaftClient(getReplicaManager(node), tableId, partId);
+    // TODO https://issues.apache.org/jira/browse/IGNITE-22522 tableOrZoneId 
-> zoneId
+    public static Optional<RaftGroupService> getRaftClient(Ignite node, int 
tableOrZoneId, int partId) {
+        return getRaftClient(getReplicaManager(node), tableOrZoneId, partId);
     }
 
     /**
      * Returns raft-client if exists.
      *
      * @param replicaManager Ignite node's replica manager with replica that 
should contains a raft client.
-     * @param tableId Desired table's ID.
+     * @param tableOrZoneId Desired table or zone ID.
      * @param partId Desired partition's ID.
      *
      * @return Optional with raft-client if exists on the node by given 
identifiers.
      */
     @TestOnly
-    public static Optional<RaftGroupService> getRaftClient(ReplicaManager 
replicaManager, int tableId, int partId) {
+    // TODO https://issues.apache.org/jira/browse/IGNITE-22522 tableOrZoneId 
-> zoneId
+    public static Optional<RaftGroupService> getRaftClient(ReplicaManager 
replicaManager, int tableOrZoneId, int partId) {

Review Comment:
   Sure.



-- 
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]

Reply via email to