From 2bf843e768f65d2531ad97fcb8c0b91779182913 Mon Sep 17 00:00:00 2001 From: Tal Levy Date: Tue, 6 Nov 2018 06:09:49 -0800 Subject: [PATCH] [TEST] Mute ChangePolicyForIndexIT#testChangePolicyForIndex --- .../xpack/indexlifecycle/ChangePolicyforIndexIT.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/indexlifecycle/ChangePolicyforIndexIT.java b/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/indexlifecycle/ChangePolicyforIndexIT.java index c0775c9e51890..0589da29312f8 100644 --- a/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/indexlifecycle/ChangePolicyforIndexIT.java +++ b/x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/indexlifecycle/ChangePolicyforIndexIT.java @@ -52,6 +52,7 @@ public class ChangePolicyforIndexIT extends ESRestTestCase { * settings from the second policy are set ont he index (proving the second * policy was used for the warm phase) */ + @AwaitsFix(bugUrl="https://github.com/elastic/elasticsearch/issues/35244") public void testChangePolicyForIndex() throws Exception { String indexName = "test-000001"; // create policy_1 and policy_2 @@ -130,6 +131,11 @@ public void testChangePolicyForIndex() throws Exception { assertEquals("node-1,node-2", includesAllocation); } + public void testTempAwaitFix() { + // this is a test stub since there is only one test in this class and it is + // awaits-fixed. This test is to be removed once testChangePolicyForIndex is resolved + } + private void assertStep(String indexName, StepKey expectedStep) throws IOException { Response explainResponse = client().performRequest(new Request("GET", "/" + indexName + "/_ilm/explain")); assertOK(explainResponse);