Procházet zdrojové kódy

Increase timeout on FollowIndexSecurityIT.testAutoFollowPatterns (#50282)

This test was causing test failures on slow CI runs.

Closes #50279
Yannick Welsch před 5 roky
rodič
revize
e8a886d510

+ 1 - 1
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);