From 8f6697e6da28653abc3e123f7dc8c935ef9e2ac8 Mon Sep 17 00:00:00 2001 From: elasticsearchmachine <58790826+elasticsearchmachine@users.noreply.github.com> Date: Thu, 29 Aug 2024 06:10:26 +1000 Subject: [PATCH 1/4] Mute org.elasticsearch.search.retriever.rankdoc.RankDocsSortBuilderTests testEqualsAndHashcode #112312 --- muted-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/muted-tests.yml b/muted-tests.yml index 602a377ce5c9..231b3e044379 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -166,6 +166,9 @@ tests: - class: org.elasticsearch.search.query.ScriptScoreQueryTests method: testScriptTermStatsNotAvailable issue: https://github.com/elastic/elasticsearch/issues/112290 +- class: org.elasticsearch.search.retriever.rankdoc.RankDocsSortBuilderTests + method: testEqualsAndHashcode + issue: https://github.com/elastic/elasticsearch/issues/112312 # Examples: # From a8fbc10fe10257c1616325cdf0c6c5add6d7c53a Mon Sep 17 00:00:00 2001 From: elasticsearchmachine <58790826+elasticsearchmachine@users.noreply.github.com> Date: Thu, 29 Aug 2024 06:20:29 +1000 Subject: [PATCH 2/4] Mute org.elasticsearch.blobcache.shared.SharedBlobCacheServiceTests testGetMultiThreaded #112314 --- muted-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/muted-tests.yml b/muted-tests.yml index 231b3e044379..7feefa1255f4 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -169,6 +169,9 @@ tests: - class: org.elasticsearch.search.retriever.rankdoc.RankDocsSortBuilderTests method: testEqualsAndHashcode issue: https://github.com/elastic/elasticsearch/issues/112312 +- class: org.elasticsearch.blobcache.shared.SharedBlobCacheServiceTests + method: testGetMultiThreaded + issue: https://github.com/elastic/elasticsearch/issues/112314 # Examples: # From 9bf5f61fbb98e5fad6fbf4a2f9945131b67d8046 Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Wed, 28 Aug 2024 14:48:25 -0600 Subject: [PATCH 3/4] Mute SharedBlobCacheServiceTests.testGetMultiThreaded (#112315) Relates to https://github.com/elastic/elasticsearch/issues/112305 --- .../blobcache/shared/SharedBlobCacheServiceTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugin/blob-cache/src/test/java/org/elasticsearch/blobcache/shared/SharedBlobCacheServiceTests.java b/x-pack/plugin/blob-cache/src/test/java/org/elasticsearch/blobcache/shared/SharedBlobCacheServiceTests.java index d7e8ad19382e..0f3804baef42 100644 --- a/x-pack/plugin/blob-cache/src/test/java/org/elasticsearch/blobcache/shared/SharedBlobCacheServiceTests.java +++ b/x-pack/plugin/blob-cache/src/test/java/org/elasticsearch/blobcache/shared/SharedBlobCacheServiceTests.java @@ -444,6 +444,7 @@ public void testMassiveDecay() throws IOException { * Exercise SharedBlobCacheService#get in multiple threads to trigger any assertion errors. * @throws IOException */ + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/112305") public void testGetMultiThreaded() throws IOException { final int threads = between(2, 10); final int regionCount = between(1, 20); From 56a1ae5c14a4f7ee48837d4216f08895051f6fdb Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Wed, 28 Aug 2024 15:02:13 -0600 Subject: [PATCH 4/4] Mute ThreadContextTests.testDropWarningsExceedingMaxSettings (#112316) Relates to https://github.com/elastic/elasticsearch/issues/112256 --- .../elasticsearch/common/util/concurrent/ThreadContextTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/test/java/org/elasticsearch/common/util/concurrent/ThreadContextTests.java b/server/src/test/java/org/elasticsearch/common/util/concurrent/ThreadContextTests.java index 88e3125655df..568fa3e36c76 100644 --- a/server/src/test/java/org/elasticsearch/common/util/concurrent/ThreadContextTests.java +++ b/server/src/test/java/org/elasticsearch/common/util/concurrent/ThreadContextTests.java @@ -638,6 +638,7 @@ public void testResponseHeaders() { } } + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/112256") public void testDropWarningsExceedingMaxSettings() { Settings settings = Settings.builder() .put(HttpTransportSettings.SETTING_HTTP_MAX_WARNING_HEADER_COUNT.getKey(), 1)