From 1495d2a0aa8faab742b6e807aad6293fb9ae9a53 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 29a05f6623116..8505368aa8fe6 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 @@ -559,7 +559,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 {