From 95a4d51e1821c9196c4cca0fa23e7be9b7b191db Mon Sep 17 00:00:00 2001 From: Gordon Brown Date: Wed, 3 Jul 2019 17:26:32 -0600 Subject: [PATCH] Mute testThatNonExistingTemplatesAreAddedImmediately --- .../history/SnapshotLifecycleTemplateRegistryTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/snapshotlifecycle/history/SnapshotLifecycleTemplateRegistryTests.java b/x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/snapshotlifecycle/history/SnapshotLifecycleTemplateRegistryTests.java index 7c086d53de408..2e430497087f6 100644 --- a/x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/snapshotlifecycle/history/SnapshotLifecycleTemplateRegistryTests.java +++ b/x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/snapshotlifecycle/history/SnapshotLifecycleTemplateRegistryTests.java @@ -105,6 +105,7 @@ public void testDisabledDoesNotAddTemplates() { assertThat(disabledRegistry.getPolicyConfigs(), hasSize(0)); } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/43950") public void testThatNonExistingTemplatesAreAddedImmediately() throws Exception { DiscoveryNode node = new DiscoveryNode("node", ESTestCase.buildNewFakeTransportAddress(), Version.CURRENT); DiscoveryNodes nodes = DiscoveryNodes.builder().localNodeId("node").masterNodeId("node").add(node).build();