Skip to content

Commit 63db62d

Browse files
authored
[TEST] Unmute testDownsampleTwice* tests (#105288) (#105326)
* Unmute testDownsampleTwice* tests * increase deadline
1 parent 6addf18 commit 63db62d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions/DownsampleActionIT.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ public void testRollupNonTSIndex() throws Exception {
409409
assertTrue("Source index should not have been deleted", indexExists(index));
410410
}
411411

412-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/101428")
413412
public void testDownsampleTwice() throws Exception {
414413
// Create the ILM policy
415414
Request request = new Request("PUT", "_ilm/policy/" + policy);
@@ -481,7 +480,7 @@ public void testDownsampleTwice() throws Exception {
481480
assertEquals(DownsampleTaskStatus.SUCCESS.toString(), settings.get(IndexMetadata.INDEX_DOWNSAMPLE_STATUS.getKey()));
482481
assertEquals(policy, settings.get(LifecycleSettings.LIFECYCLE_NAME_SETTING.getKey()));
483482
assertEquals("1h", settings.get(IndexMetadata.INDEX_DOWNSAMPLE_INTERVAL.getKey()));
484-
}, 60, TimeUnit.SECONDS);
483+
}, 120, TimeUnit.SECONDS);
485484
} catch (AssertionError ae) {
486485
if (indexExists(firstBackingIndex)) {
487486
logger.error("Index [{}] ilm explain {}", firstBackingIndex, explainIndex(client(), firstBackingIndex));
@@ -563,7 +562,7 @@ public void testDownsampleTwiceSameInterval() throws Exception {
563562
assertEquals(DownsampleTaskStatus.SUCCESS.toString(), settings.get(IndexMetadata.INDEX_DOWNSAMPLE_STATUS.getKey()));
564563
assertEquals("5m", settings.get(IndexMetadata.INDEX_DOWNSAMPLE_INTERVAL.getKey()));
565564
assertEquals(policy, settings.get(LifecycleSettings.LIFECYCLE_NAME_SETTING.getKey()));
566-
}, 60, TimeUnit.SECONDS);
565+
}, 120, TimeUnit.SECONDS);
567566

568567
// update the policy to now contain the downsample action in cold, whilst not existing in warm anymore (this will have our already
569568
// downsampled index attempt to go through the downsample action again when in cold)

0 commit comments

Comments
 (0)