Skip to content

Commit 0ec2fe0

Browse files
authored
Increase timeout in DataStreamLifecycleDownsampleDisruptionIT (#122151)
The downsample task sometimes needs a little bit longer to complete so we bump the timeout from 60s to 120s. Fixes #122056
1 parent 3928051 commit 0ec2fe0

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,6 @@ tests:
379379
issue: https://github.com/elastic/elasticsearch/issues/121537
380380
- class: org.elasticsearch.xpack.migrate.action.ReindexDatastreamIndexTransportActionIT
381381
issue: https://github.com/elastic/elasticsearch/issues/121737
382-
- class: org.elasticsearch.xpack.downsample.DataStreamLifecycleDownsampleDisruptionIT
383-
method: testDataStreamLifecycleDownsampleRollingRestart
384-
issue: https://github.com/elastic/elasticsearch/issues/122056
385382
- class: org.elasticsearch.xpack.restart.FullClusterRestartIT
386383
method: testWatcherWithApiKey {cluster=UPGRADED}
387384
issue: https://github.com/elastic/elasticsearch/issues/122061

x-pack/plugin/downsample/src/internalClusterTest/java/org/elasticsearch/xpack/downsample/DataStreamLifecycleDownsampleDisruptionIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public void testDataStreamLifecycleDownsampleRollingRestart() throws Exception {
119119
} catch (Exception e) {
120120
throw new AssertionError(e);
121121
}
122-
}, 60, TimeUnit.SECONDS);
122+
}, 120, TimeUnit.SECONDS);
123123
ensureGreen(targetIndex);
124124
}
125125
}

0 commit comments

Comments
 (0)