alex-plekhanov commented on code in PR #12848:
URL: https://github.com/apache/ignite/pull/12848#discussion_r2895296582
##########
modules/core/src/test/java/org/apache/ignite/internal/processors/localtask/DurableBackgroundTasksProcessorSelfTest.java:
##########
@@ -535,7 +539,7 @@ private void checkStateAndMetaStorage(
if (expState == null)
assertNull(taskState);
else {
- assertEquals(expState, taskState.state());
+ assertTrue(waitForCondition(() -> expState == taskState.state(),
5));
Review Comment:
Parameter is ms, so you need 5_000L for 5 seconds.
--
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]