Cyrill commented on code in PR #6408: URL: https://github.com/apache/ignite-3/pull/6408#discussion_r2287455318
########## modules/cluster-management/src/integrationTest/java/org/apache/ignite/internal/cluster/management/ItClusterManagerTest.java: ########## @@ -317,6 +337,15 @@ void testNoConfigurationReordering() throws Exception { // Wait for the initial cluster reconfiguration to complete. assertLearnerSize(2); + // Same as above, but check the all 5 nodes see the same number of learners (which is 2 actually). + assertTrue(waitForCondition(() -> + configs.size() == 5 && configs.values().stream() + .map(list -> list.get(list.size() - 1)) + .mapToInt(raftGroupConfiguration -> raftGroupConfiguration.learners().size()) + .min().orElseThrow() == 2, Review Comment: done -- 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