From 82086929d78fe67576e0c878074f7664fc96bb64 Mon Sep 17 00:00:00 2001 From: Yannick Welsch Date: Wed, 18 Dec 2019 10:36:41 +0100 Subject: [PATCH] Increase timeout on FollowIndexSecurityIT.testAutoFollowPatterns (#50282) This test was causing test failures on slow CI runs. Closes #50279 --- .../java/org/elasticsearch/xpack/ccr/FollowIndexSecurityIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/ccr/qa/security/src/test/java/org/elasticsearch/xpack/ccr/FollowIndexSecurityIT.java b/x-pack/plugin/ccr/qa/security/src/test/java/org/elasticsearch/xpack/ccr/FollowIndexSecurityIT.java index 9f41ae758bf..f8ed48777da 100644 --- a/x-pack/plugin/ccr/qa/security/src/test/java/org/elasticsearch/xpack/ccr/FollowIndexSecurityIT.java +++ b/x-pack/plugin/ccr/qa/security/src/test/java/org/elasticsearch/xpack/ccr/FollowIndexSecurityIT.java @@ -169,7 +169,7 @@ public class FollowIndexSecurityIT extends ESCCRRestTestCase { assertBusy(() -> { ensureYellow(allowedIndex); verifyDocuments(allowedIndex, 5, "*:*"); - }); + }, 30, TimeUnit.SECONDS); assertThat(indexExists(disallowedIndex), is(false)); assertBusy(() -> { verifyCcrMonitoring(allowedIndex, allowedIndex);