12rcu commented on code in PR #5158:
URL: https://github.com/apache/ignite-3/pull/5158#discussion_r1955810834


##########
modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ItNodeTest.java:
##########
@@ -4497,6 +4509,36 @@ private static boolean waitForTopology(TestCluster 
cluster, PeerId peerId, int e
         return false;
     }
 
+    /**
+     * Test if the actual value gets equal to expected within a given timeout. 
The method will log all values the actual parameter
+     * has taken if the timeout is reached.
+     * @param expected the expected value
+     * @param actual the actual value, this should change over time and 
therefore a supplier
+     * @param timeout the duration within the actual value should be the same 
as the expected value
+     * @param <T> the type of expected and actual value
+     * @throws TimeoutException when the duration is reached
+     */
+    @SuppressWarnings("BusyWait")
+    private static <T> void assertWaitForCondition(T expected, Supplier<T> 
actual, Duration timeout) throws TimeoutException {

Review Comment:
   Yes, of course I edited it.



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