Skip to content

Commit a18b3c3

Browse files
Merge branch 'main' into maximum-timestamp-in-get-data-streams
2 parents 2593151 + 56a1ae5 commit a18b3c3

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

muted-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,12 @@ tests:
166166
- class: org.elasticsearch.search.query.ScriptScoreQueryTests
167167
method: testScriptTermStatsNotAvailable
168168
issue: https://github.com/elastic/elasticsearch/issues/112290
169+
- class: org.elasticsearch.search.retriever.rankdoc.RankDocsSortBuilderTests
170+
method: testEqualsAndHashcode
171+
issue: https://github.com/elastic/elasticsearch/issues/112312
172+
- class: org.elasticsearch.blobcache.shared.SharedBlobCacheServiceTests
173+
method: testGetMultiThreaded
174+
issue: https://github.com/elastic/elasticsearch/issues/112314
169175

170176
# Examples:
171177
#

server/src/test/java/org/elasticsearch/common/util/concurrent/ThreadContextTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,7 @@ public void testResponseHeaders() {
638638
}
639639
}
640640

641+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/112256")
641642
public void testDropWarningsExceedingMaxSettings() {
642643
Settings settings = Settings.builder()
643644
.put(HttpTransportSettings.SETTING_HTTP_MAX_WARNING_HEADER_COUNT.getKey(), 1)

x-pack/plugin/blob-cache/src/test/java/org/elasticsearch/blobcache/shared/SharedBlobCacheServiceTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,7 @@ public void testMassiveDecay() throws IOException {
444444
* Exercise SharedBlobCacheService#get in multiple threads to trigger any assertion errors.
445445
* @throws IOException
446446
*/
447+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/112305")
447448
public void testGetMultiThreaded() throws IOException {
448449
final int threads = between(2, 10);
449450
final int regionCount = between(1, 20);

0 commit comments

Comments
 (0)