From d4bebd916f2db8a51a30ebd067368b00d47b8c81 Mon Sep 17 00:00:00 2001 From: Niels Bauman Date: Mon, 5 May 2025 09:26:12 +0200 Subject: [PATCH] Bump the MP x-pack YAML test suite timeout to 60m After the `IndexTemplateRegistry` was made project-aware in #126986, we were seeing timeouts of the MP version of the x-pack YAML test suite. The original version has a timeout of 60 minutes but the MP-version still had a timeout of 30 minutes. We've gotten away with that difference because there are still tests on the blacklist for the MP version, but now that we're making more and more features project-aware, we need to align the timeout. Fixes #127433 --- .../test/XpackWithMultipleProjectsClientYamlTestSuiteIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/qa/multi-project/xpack-rest-tests-with-multiple-projects/src/yamlRestTest/java/org/elasticsearch/multiproject/test/XpackWithMultipleProjectsClientYamlTestSuiteIT.java b/x-pack/qa/multi-project/xpack-rest-tests-with-multiple-projects/src/yamlRestTest/java/org/elasticsearch/multiproject/test/XpackWithMultipleProjectsClientYamlTestSuiteIT.java index 860e2ffc0690f..0977eaddd7e06 100644 --- a/x-pack/qa/multi-project/xpack-rest-tests-with-multiple-projects/src/yamlRestTest/java/org/elasticsearch/multiproject/test/XpackWithMultipleProjectsClientYamlTestSuiteIT.java +++ b/x-pack/qa/multi-project/xpack-rest-tests-with-multiple-projects/src/yamlRestTest/java/org/elasticsearch/multiproject/test/XpackWithMultipleProjectsClientYamlTestSuiteIT.java @@ -20,7 +20,7 @@ import org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase; import org.junit.ClassRule; -@TimeoutSuite(millis = 30 * TimeUnits.MINUTE) +@TimeoutSuite(millis = 60 * TimeUnits.MINUTE) public class XpackWithMultipleProjectsClientYamlTestSuiteIT extends MultipleProjectsClientYamlSuiteTestCase { @ClassRule public static ElasticsearchCluster cluster = ElasticsearchCluster.local()