Skip to content

Commit

Permalink
Increase implicit suite timeout to 40 mins (#72495)
Browse files Browse the repository at this point in the history
The MixedClusterClientYamlTestSuiteIT test suite has been ordained with a 40 mins timeout.
But the ElasticsearchTestBasePlugin overrides the suite annotation,
using a system prop, to 30 mins; see also SysGlobals#SYSPROP_TIMEOUT_SUITE .
This PR increases the value for the system prop override to 40 mins,
to match the above suites declarations.

Closes #72393
  • Loading branch information
albertzaharovits authored Apr 29, 2021
1 parent 0074ba6 commit 254ddc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void execute(Task t) {

if (OS.current().equals(OS.WINDOWS) && System.getProperty("tests.timeoutSuite") == null) {
// override the suite timeout to 30 mins for windows, because it has the most inefficient filesystem known to man
test.systemProperty("tests.timeoutSuite", "1800000!");
test.systemProperty("tests.timeoutSuite", "2400000!");
}

/*
Expand Down

0 comments on commit 254ddc4

Please sign in to comment.