Skip to content

Commit

Permalink
Increase timeout when starting test query runner
Browse files Browse the repository at this point in the history
  • Loading branch information
mshang816 authored and NikhilCollooru committed Oct 31, 2023
1 parent 6376fa0 commit f1cd030
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ private DistributedQueryRunner(

long start = nanoTime();
while (!allNodesGloballyVisible()) {
Assertions.assertLessThan(nanosSince(start), new Duration(30, SECONDS));
Assertions.assertLessThan(nanosSince(start), new Duration(60, SECONDS));
MILLISECONDS.sleep(10);
}
log.info("Announced servers in %s", nanosSince(start).convertToMostSuccinctTimeUnit());
Expand Down

0 comments on commit f1cd030

Please sign in to comment.