* 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:
parent
a2c07b5011
commit
f675b33d50
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue