Skip to content

Commit

Permalink
Add more time for query runner to start
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Jul 10, 2024
1 parent 07d6f77 commit e0b76e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ private DistributedQueryRunner(

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

0 comments on commit e0b76e6

Please sign in to comment.