Skip to content

Commit 1fc7e92

Browse files
authored
Increase timeout for slow CCS search tests (elastic#139583)
Bump the timeout from 20 to 30mins
1 parent f6b3a37 commit 1fc7e92

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,6 @@ tests:
469469
- class: org.elasticsearch.xpack.logsdb.RandomizedRollingUpgradeIT
470470
method: testIndexingSyntheticSource
471471
issue: https://github.com/elastic/elasticsearch/issues/139482
472-
- class: org.elasticsearch.test.rest.yaml.CssSearchYamlTestSuiteIT
473-
method: test {p0=search/500_date_range/test range query for all docs with year uuuu}
474-
issue: https://github.com/elastic/elasticsearch/issues/139534
475472
- class: org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobStoreRepositoryTests
476473
method: testMultipleSnapshotAndRollback
477474
issue: https://github.com/elastic/elasticsearch/issues/139556

qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/CssSearchYamlTestSuiteIT.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@
99

1010
package org.elasticsearch.test.rest.yaml;
1111

12+
import com.carrotsearch.randomizedtesting.annotations.TimeoutSuite;
13+
14+
import org.apache.lucene.tests.util.TimeUnits;
15+
1216
import java.io.IOException;
1317

1418
/**
1519
* Runs the search and msearch API tests only. See {@link TestSuiteApiCheck}
1620
*/
21+
@TimeoutSuite(millis = 30 * TimeUnits.MINUTE) // to account for slow encryption at rest tests
1722
public class CssSearchYamlTestSuiteIT extends CcsCommonYamlTestSuiteIT {
1823
public CssSearchYamlTestSuiteIT(ClientYamlTestCandidate testCandidate) throws IOException {
1924
super(testCandidate);

0 commit comments

Comments
 (0)