Increase Timeout in UnicastZenPingTests (#38893) (#39449)

* Just like #37268 removing another 1s timeout, those are dangerous since they're easily exceeded by an untimely gc pause
* Closes #26701
This commit is contained in:
Armin Braun 2019-02-27 15:22:17 +01:00 committed by GitHub
parent a2c07b5011
commit f675b33d50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -839,7 +839,7 @@ public class UnicastZenPingTests extends ESTestCase {
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);