Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -590,9 +590,6 @@ tests:
- class: org.elasticsearch.common.ssl.DefaultJdkTrustConfigTests
method: testGetNonPKCS11TrustStoreWithPasswordSet
issue: https://github.com/elastic/elasticsearch/issues/130519
- class: org.elasticsearch.repositories.blobstore.BlobStoreCorruptionIT
method: testCorruptionDetection
issue: https://github.com/elastic/elasticsearch/issues/130536
- class: org.elasticsearch.multiproject.test.CoreWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=indices.resolve_index/10_basic_resolve_index/Resolve index with hidden and closed indices}
issue: https://github.com/elastic/elasticsearch/issues/130568
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void testCorruptionDetection() throws Exception {
"fallback message",
"org.elasticsearch.repositories.blobstore.BlobStoreRepository",
Level.ERROR,
"index [*] shard generation [*] in ["
"index [*] shard generation [*] in [default/"
+ repositoryName
+ "][*] not found - falling back to reading all shard snapshots"
)
Expand All @@ -100,7 +100,9 @@ public void testCorruptionDetection() throws Exception {
"shard blobs list",
"org.elasticsearch.repositories.blobstore.BlobStoreRepository",
Level.ERROR,
"read shard snapshots [*] due to missing shard generation [*] for index [*] in [" + repositoryName + "][*]"
"read shard snapshots [*] due to missing shard generation [*] for index [*] in [default/"
+ repositoryName
+ "][*]"
)
);
client().admin()
Expand Down