Skip to content

Commit 100090c

Browse files
authored
Increase timeout in indexRandom to 30ses (elastic#127385)
This is a backport of [116126](elastic#116126) [ [122598](elastic#122598) ] closes [126753](elastic#126753)
1 parent 76e69f0 commit 100090c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

muted-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,6 @@ tests:
169169
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
170170
method: test {p0=ml/3rd_party_deployment/Test start deployment fails while model download in progress}
171171
issue: https://github.com/elastic/elasticsearch/issues/120810
172-
- class: org.elasticsearch.indices.mapping.UpdateMappingIntegrationIT
173-
issue: https://github.com/elastic/elasticsearch/issues/116126
174172
- class: org.elasticsearch.xpack.security.authc.service.ServiceAccountIT
175173
method: testAuthenticateShouldNotFallThroughInCaseOfFailure
176174
issue: https://github.com/elastic/elasticsearch/issues/120902

test/framework/src/main/java/org/elasticsearch/test/ESIntegTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1801,7 +1801,7 @@ public void indexRandom(boolean forceRefresh, boolean dummyDocuments, boolean ma
18011801
}
18021802
}
18031803
for (CountDownLatch operation : inFlightAsyncOperations) {
1804-
safeAwait(operation);
1804+
safeAwait(operation, TEST_REQUEST_TIMEOUT);
18051805
}
18061806
if (bogusIds.isEmpty() == false) {
18071807
// delete the bogus types again - it might trigger merges or at least holes in the segments and enforces deleted docs!

0 commit comments

Comments
 (0)