Skip to content

Commit c557268

Browse files
author
Spencer
authored
[es-test-cluster] increase start timeout for snapshots (#25600) (#25622)
1 parent c97e857 commit c557268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/kbn-test/src/es/es_test_cluster.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function createEsTestCluster(options = {}) {
5858
const second = 1000;
5959
const minute = second * 60;
6060

61-
return esFrom === 'snapshot' ? minute : minute * 6;
61+
return esFrom === 'snapshot' ? 3 * minute : 6 * minute;
6262
}
6363

6464
async start(esArgs = []) {

0 commit comments

Comments
 (0)