From 720ebbef1ff6c05f38ead8f830ae1bd4841bcda4 Mon Sep 17 00:00:00 2001 From: Yannick Welsch Date: Mon, 18 May 2020 16:10:34 +0200 Subject: [PATCH] Increase timeout for assertLongBusy in AutoFollowIT (#56910) Closes #56891 --- .../java/org/elasticsearch/xpack/ccr/AutoFollowIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/ccr/src/internalClusterTest/java/org/elasticsearch/xpack/ccr/AutoFollowIT.java b/x-pack/plugin/ccr/src/internalClusterTest/java/org/elasticsearch/xpack/ccr/AutoFollowIT.java index ef94befad6d74..ca5a8d3c12537 100644 --- a/x-pack/plugin/ccr/src/internalClusterTest/java/org/elasticsearch/xpack/ccr/AutoFollowIT.java +++ b/x-pack/plugin/ccr/src/internalClusterTest/java/org/elasticsearch/xpack/ccr/AutoFollowIT.java @@ -613,7 +613,7 @@ private AutoFollowMetadata.AutoFollowPattern getAutoFollowPattern(final String n private void assertLongBusy(CheckedRunnable codeBlock) throws Exception { try { - assertBusy(codeBlock, 60L, TimeUnit.SECONDS); + assertBusy(codeBlock, 120L, TimeUnit.SECONDS); } catch (AssertionError ae) { AutoFollowStats autoFollowStats = null; try {