Skip to content

Commit

Permalink
Increase timeout for assertLongBusy in AutoFollowIT (#56910)
Browse files Browse the repository at this point in the history
Closes #56891
  • Loading branch information
ywelsch authored May 18, 2020
1 parent c6c8cdc commit 1495d2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ private AutoFollowMetadata.AutoFollowPattern getAutoFollowPattern(final String n

private void assertLongBusy(CheckedRunnable<Exception> codeBlock) throws Exception {
try {
assertBusy(codeBlock, 60L, TimeUnit.SECONDS);
assertBusy(codeBlock, 120L, TimeUnit.SECONDS);
} catch (AssertionError ae) {
AutoFollowStats autoFollowStats = null;
try {
Expand Down

0 comments on commit 1495d2a

Please sign in to comment.