From f390b52c25baafa09e69abdb4526729a9125dd92 Mon Sep 17 00:00:00 2001 From: Ioannis Kakavas Date: Wed, 18 Mar 2020 19:05:33 +0200 Subject: [PATCH] Mute failing tests --- .../elasticsearch/xpack/ilm/TimeSeriesLifecycleActionsIT.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/ilm/TimeSeriesLifecycleActionsIT.java b/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/ilm/TimeSeriesLifecycleActionsIT.java index 14c99d471e983..feb2854a0986a 100644 --- a/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/ilm/TimeSeriesLifecycleActionsIT.java +++ b/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/ilm/TimeSeriesLifecycleActionsIT.java @@ -207,6 +207,7 @@ public void testMoveToRolloverStep() throws Exception { assertBusy(() -> assertFalse(indexExists(shrunkenOriginalIndex))); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53738") public void testRetryFailedDeleteAction() throws Exception { createIndexWithSettings(index, Settings.builder() .put(IndexMetaData.SETTING_NUMBER_OF_SHARDS, 1) @@ -282,6 +283,7 @@ public void testRetryFailedShrinkAction() throws Exception { expectThrows(ResponseException.class, this::indexDocument); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53738") public void testRolloverAction() throws Exception { String originalIndex = index + "-000001"; String secondIndex = index + "-000002"; @@ -300,6 +302,7 @@ public void testRolloverAction() throws Exception { assertBusy(() -> assertEquals("true", getOnlyIndexSettings(originalIndex).get(LifecycleSettings.LIFECYCLE_INDEXING_COMPLETE))); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53738") public void testRolloverActionWithIndexingComplete() throws Exception { String originalIndex = index + "-000001"; String secondIndex = index + "-000002"; @@ -752,6 +755,7 @@ public void testFreezeDuringSnapshot() throws Exception { assertOK(client().performRequest(new Request("DELETE", "/_snapshot/repo/snapshot"))); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53738") public void testSetPriority() throws Exception { createIndexWithSettings(index, Settings.builder().put(IndexMetaData.SETTING_NUMBER_OF_SHARDS, 1) .put(IndexMetaData.SETTING_NUMBER_OF_REPLICAS, 0).put(IndexMetaData.INDEX_PRIORITY_SETTING.getKey(), 100));