This is an automated email from the ASF dual-hosted git repository.
mpochatkin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 3c4313265e IGNITE-23585 Fix flaky DeploymentUnitAcquiredWaiterTest
(#4665)
3c4313265e is described below
commit 3c4313265e69aa620126ee796e8ef51a6a761f48
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Fri Nov 1 14:52:45 2024 +0300
IGNITE-23585 Fix flaky DeploymentUnitAcquiredWaiterTest (#4665)
---
.../ignite/internal/deployunit/DeploymentUnitAcquiredWaiterTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/code-deployment/src/test/java/org/apache/ignite/internal/deployunit/DeploymentUnitAcquiredWaiterTest.java
b/modules/code-deployment/src/test/java/org/apache/ignite/internal/deployunit/DeploymentUnitAcquiredWaiterTest.java
index 9f77409686..436d5d56e0 100644
---
a/modules/code-deployment/src/test/java/org/apache/ignite/internal/deployunit/DeploymentUnitAcquiredWaiterTest.java
+++
b/modules/code-deployment/src/test/java/org/apache/ignite/internal/deployunit/DeploymentUnitAcquiredWaiterTest.java
@@ -147,7 +147,7 @@ class DeploymentUnitAcquiredWaiterTest extends
BaseIgniteAbstractTest {
undeployer.submitToAcquireRelease(unit1);
// check delay between attempts to undeploy the unit.
- verify(deploymentUnitAccessor, after(DELAY_IN_MILLIS * 5).atMost(6))
+ verify(deploymentUnitAccessor, after(DELAY_IN_MILLIS * 5).atMost(7))
.computeIfNotAcquired(eq(unit1), any());
}