Cyrill commented on code in PR #6408:
URL: https://github.com/apache/ignite-3/pull/6408#discussion_r2282989517


##########
modules/runner/src/testFixtures/java/org/apache/ignite/internal/Cluster.java:
##########
@@ -448,7 +447,7 @@ public Ignite startNode(int index) {
      */
     public Ignite startNode(int index, String nodeBootstrapConfigTemplate) {
         ServerRegistration registration = startEmbeddedNode(index, 
nodeBootstrapConfigTemplate);
-        assertThat("nodeIndex=" + index, registration.registrationFuture(), 
willSucceedIn(20, SECONDS));
+        assertThat("nodeIndex=" + index, registration.registrationFuture(), 
willCompleteSuccessfully());

Review Comment:
   `willCompleteSuccessfully()` delegates to 
   ```
   private CompletableFutureMatcher(Matcher<T> matcher) {
       this(matcher, DEFAULT_TIMEOUT_SECONDS, TimeUnit.SECONDS);
   }
   ```
   and DEFAULT_TIMEOUT_SECONDS=30,
   in other words I increased the timeout from 20 to 30
   



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