[es-test-cluster] increase start timeout for snapshots (#25600)

This commit is contained in:
Spencer 2018-11-13 15:47:38 -08:00 committed by GitHub
parent c48cea9265
commit 101c352221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ export function createEsTestCluster(options = {}) {
const second = 1000;
const minute = second * 60;
return esFrom === 'snapshot' ? minute : minute * 6;
return esFrom === 'snapshot' ? 3 * minute : 6 * minute;
}
async start(esArgs = []) {