ibessonov commented on code in PR #4403: URL: https://github.com/apache/ignite-3/pull/4403#discussion_r1764553289
########## modules/system-disaster-recovery/src/main/java/org/apache/ignite/internal/disaster/system/MetastorageRepairImpl.java: ########## @@ -94,8 +95,7 @@ public CompletableFuture<Void> repair(Set<String> participatingNodeNames, int me private CompletableFuture<Void> waitTillValidatedNodesContain(Set<String> nodeNames) { Set<String> cumulativeValidatedNodeNames = ConcurrentHashMap.newKeySet(); - CompletableFuture<Void> future = new CompletableFuture<>(); - future.orTimeout(WAIT_FOR_NODES_SECONDS, TimeUnit.MINUTES); + CompletableFuture<Void> future = new CompletableFuture<>();; Review Comment: ```suggestion CompletableFuture<Void> future = new CompletableFuture<>(); ``` -- 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