Skip to content

Commit

Permalink
Increase Timeout in UnicastZenPingTests (#38893) (#39449)
Browse files Browse the repository at this point in the history
* Just like #37268 removing another 1s timeout, those are dangerous since they're easily exceeded by an untimely gc pause
* Closes #26701
  • Loading branch information
original-brownbear authored Feb 27, 2019
1 parent a2c07b5 commit f675b33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ PingCollection pingAndWait() throws ExecutionException, InterruptedException {
markTaskAsStarted("send pings");
markTaskAsStarted("send pings");
final AtomicReference<PingCollection> response = new AtomicReference<>();
ping(response::set, TimeValue.timeValueMillis(1), TimeValue.timeValueSeconds(1));
ping(response::set, TimeValue.timeValueMillis(1), TimeValue.timeValueSeconds(30));
pingingRoundClosed.await();
final PingCollection result = response.get();
assertNotNull("pinging didn't complete", result);
Expand Down

0 comments on commit f675b33

Please sign in to comment.