From b907c21a03967c5a9616c6d8253c0696a25f437e Mon Sep 17 00:00:00 2001 From: Yannick Welsch Date: Tue, 17 Dec 2019 17:26:43 +0100 Subject: [PATCH] Increase timeout on FollowIndexSecurityIT.testAutoFollowPatterns --- .../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 9f41ae758bf94..f8ed48777dacc 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 void testAutoFollowPatterns() throws Exception { assertBusy(() -> { ensureYellow(allowedIndex); verifyDocuments(allowedIndex, 5, "*:*"); - }); + }, 30, TimeUnit.SECONDS); assertThat(indexExists(disallowedIndex), is(false)); assertBusy(() -> { verifyCcrMonitoring(allowedIndex, allowedIndex);