Skip to content

Commit 8208692

Browse files
committed
Increase timeout on FollowIndexSecurityIT.testAutoFollowPatterns (#50282)
This test was causing test failures on slow CI runs. Closes #50279
1 parent 5759a26 commit 8208692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/ccr/qa/security/src/test/java/org/elasticsearch/xpack/ccr/FollowIndexSecurityIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public void testAutoFollowPatterns() throws Exception {
169169
assertBusy(() -> {
170170
ensureYellow(allowedIndex);
171171
verifyDocuments(allowedIndex, 5, "*:*");
172-
});
172+
}, 30, TimeUnit.SECONDS);
173173
assertThat(indexExists(disallowedIndex), is(false));
174174
assertBusy(() -> {
175175
verifyCcrMonitoring(allowedIndex, allowedIndex);

0 commit comments

Comments
 (0)