rpuch commented on code in PR #6297:
URL: https://github.com/apache/ignite-3/pull/6297#discussion_r2222825657


##########
modules/raft/src/test/java/org/apache/ignite/internal/raft/storage/impl/DefaultLogStorageFactoryTest.java:
##########
@@ -61,6 +62,12 @@ class DefaultLogStorageFactoryTest {
 
     private final Peer peer = new Peer("127.0.0.1");
 
+    private final GroupIdFastForward fastForward = idForStorage -> {
+        String zoneIdString = idForStorage.substring(0, 
idForStorage.indexOf("_part_"));
+        int nextZoneId = Integer.parseInt(zoneIdString) + 1;
+        return new RaftNodeId(new ZonePartitionId(nextZoneId, 0), 
peer).nodeIdStringForStorage();

Review Comment:
   I removed fast forwarding, so this code does not exist anymore



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

Reply via email to