This is an automated email from the ASF dual-hosted git repository.
nizhikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new 14e8e6b5a0a IGNITE-27602: Fix flaky
GridCommandHandlerCheckpointTest#testCheckpointPersistenceCluster (#12649)
14e8e6b5a0a is described below
commit 14e8e6b5a0a249f1b7755290083ee3d1aee35707
Author: DEADripER <[email protected]>
AuthorDate: Wed Jan 28 13:00:01 2026 +0300
IGNITE-27602: Fix flaky
GridCommandHandlerCheckpointTest#testCheckpointPersistenceCluster (#12649)
---
.../java/org/apache/ignite/util/GridCommandHandlerCheckpointTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/control-utility/src/test/java/org/apache/ignite/util/GridCommandHandlerCheckpointTest.java
b/modules/control-utility/src/test/java/org/apache/ignite/util/GridCommandHandlerCheckpointTest.java
index 57d384afe79..ecf9b907aa6 100644
---
a/modules/control-utility/src/test/java/org/apache/ignite/util/GridCommandHandlerCheckpointTest.java
+++
b/modules/control-utility/src/test/java/org/apache/ignite/util/GridCommandHandlerCheckpointTest.java
@@ -150,7 +150,7 @@ public class GridCommandHandlerCheckpointTest extends
GridCommandHandlerAbstract
cacheCli.put(3, 3);
assertEquals(EXIT_CODE_OK, execute("--checkpoint",
"--wait-for-finish"));
- assertTrue(checkpointFinishedLsnr.check());
+
assertTrue(GridTestUtils.waitForCondition(checkpointFinishedLsnr::check,
10_000));
assertFalse(testOut.toString().contains("persistence disabled"));
}