Increase timeout for assertLongBusy in AutoFollowIT (#56910)

Closes #56891
This commit is contained in:
Yannick Welsch 2020-05-18 16:10:34 +02:00
parent 73c00a9ce4
commit f296c08021
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ public class AutoFollowIT extends CcrIntegTestCase {
private void assertLongBusy(CheckedRunnable<Exception> codeBlock) throws Exception { private void assertLongBusy(CheckedRunnable<Exception> codeBlock) throws Exception {
try { try {
assertBusy(codeBlock, 60L, TimeUnit.SECONDS); assertBusy(codeBlock, 120L, TimeUnit.SECONDS);
} catch (AssertionError ae) { } catch (AssertionError ae) {
AutoFollowStats autoFollowStats = null; AutoFollowStats autoFollowStats = null;
try { try {