From 04b053a7d6bb94c93d055be019497e66beeed279 Mon Sep 17 00:00:00 2001 From: Tanguy Leroux Date: Wed, 25 Mar 2020 11:04:41 +0100 Subject: [PATCH] Mute TransportSearchActionTests.testShouldPreFilterSearchShards Relates #53873 Relates #54156 --- .../elasticsearch/action/search/TransportSearchActionTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/test/java/org/elasticsearch/action/search/TransportSearchActionTests.java b/server/src/test/java/org/elasticsearch/action/search/TransportSearchActionTests.java index 895c75c3f98e4..1d60981639e67 100644 --- a/server/src/test/java/org/elasticsearch/action/search/TransportSearchActionTests.java +++ b/server/src/test/java/org/elasticsearch/action/search/TransportSearchActionTests.java @@ -844,6 +844,7 @@ public void testShouldMinimizeRoundtrips() throws Exception { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/54156") public void testShouldPreFilterSearchShards() { int numIndices = randomIntBetween(1, 10); Index[] indices = new Index[numIndices]; @@ -886,6 +887,7 @@ public void testShouldPreFilterSearchShards() { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/54156") public void testShouldPreFilterSearchShardsWithReadOnly() { int numIndices = randomIntBetween(1, 10); int numReadOnly = randomIntBetween(1, numIndices);