Increase Timeout for Waiting on Tasks in REST Tests (#64707) (#64718)

10s is pretty tight here considering that some x-pack related tests
might have a running create-index tasks in the backgroud after a test
that require multiple CS updates and can randomly take a few seconds on
slow IO etc.

closes #64580
This commit is contained in:
Armin Braun 2020-11-06 17:39:24 +01:00 committed by GitHub
parent f00484afa8
commit 6de9198017
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ public abstract class ESRestTestCase extends ESTestCase {
} catch (final IOException e) {
throw new AssertionError("error getting active tasks list", e);
}
});
}, 30L, TimeUnit.SECONDS);
}
/**