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 committed May 18, 2020
1 parent fd926fd commit 82e751d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,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 82e751d

Please sign in to comment.