From b866417650e450e6b9e478e6711b22fec59bfffd Mon Sep 17 00:00:00 2001 From: Gordon Brown Date: Mon, 4 Feb 2019 16:06:19 -0700 Subject: [PATCH] Mute testCannotShrinkLeaderIndex (#38374) This test should not pass until CCR finishes integrating shard history retention leases. It currently sometimes passes (which is a bug in the test), but cannot pass reliably until the linked issue is resolved. --- .../xpack/indexlifecycle/CCRIndexLifecycleIT.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/x-pack/plugin/ilm/qa/multi-cluster/src/test/java/org/elasticsearch/xpack/indexlifecycle/CCRIndexLifecycleIT.java b/x-pack/plugin/ilm/qa/multi-cluster/src/test/java/org/elasticsearch/xpack/indexlifecycle/CCRIndexLifecycleIT.java index cd8aac7bf10..01f0eb4c7d0 100644 --- a/x-pack/plugin/ilm/qa/multi-cluster/src/test/java/org/elasticsearch/xpack/indexlifecycle/CCRIndexLifecycleIT.java +++ b/x-pack/plugin/ilm/qa/multi-cluster/src/test/java/org/elasticsearch/xpack/indexlifecycle/CCRIndexLifecycleIT.java @@ -326,6 +326,9 @@ public class CCRIndexLifecycleIT extends ESCCRRestTestCase { } } + // Specifically, this is waiting for this bullet to be complete: + // - integrate shard history retention leases with cross-cluster replication + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/37165") public void testCannotShrinkLeaderIndex() throws Exception { String indexName = "shrink-leader-test"; String shrunkenIndexName = "shrink-" + indexName;