zstan commented on code in PR #13047:
URL: https://github.com/apache/ignite/pull/13047#discussion_r3108414360
##########
modules/core/src/test/java/org/apache/ignite/spi/discovery/tcp/TcpDiscoveryIpFinderFailureTest.java:
##########
@@ -143,7 +144,7 @@ private void runClientNodeIpFinderFailureTest(long
reconnectDelay) throws Except
return true;
}, EVT_CLIENT_NODE_DISCONNECTED);
- assertTrue("Failed to wait for client node disconnected.",
latch.await(6, SECONDS));
+ assertTrue("Failed to wait for client node disconnected.",
latch.await(10, SECONDS));
Review Comment:
```suggestion
assertTrue("Failed to wait for client node disconnected.",
latch.await(2 * Math.max(reconnectDelay, networkTimeout)/1000, 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]