From 0c31f5e412be746b6e163f24a651ffc2d9f7ddd1 Mon Sep 17 00:00:00 2001 From: Yannick Welsch Date: Mon, 18 May 2020 15:26:51 +0200 Subject: [PATCH] Increase timeout for assertLongBusy in AutoFollowIT --- .../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 {