Increase the REST test timeout. (#28640)

By default we wait for 30 seconds for nodes to start. Looking at CI,
even for passing builds, the startup time is frequently over 20 seconds
(grep for `#wait (Thread[Task worker for ':',5,main]) completed` in any
console log), which is close to the threshold. This commit sets a
default timeout of 120 seconds instead, so that REST tests are less
likely to hit a timeout.
This commit is contained in:
Adrien Grand 2018-02-13 11:05:26 +01:00 committed by GitHub
parent bf6378e426
commit db87294a00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ class ClusterConfiguration {
* condition is executed.
*/
@Input
int nodeStartupWaitSeconds = 30
int nodeStartupWaitSeconds = 120
public ClusterConfiguration(Project project) {
this.project = project