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
9 changes: 3 additions & 6 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,12 +338,9 @@ tests:
- class: org.elasticsearch.index.shard.StoreRecoveryTests
method: testAddIndices
issue: https://github.com/elastic/elasticsearch/issues/124104
- class: org.elasticsearch.xpack.inference.registry.ModelRegistryMetadataTests
method: testUpgrade
issue: https://github.com/elastic/elasticsearch/issues/125554
- class: org.elasticsearch.xpack.inference.registry.ModelRegistryMetadataTests
method: testAlreadyUpgraded
issue: https://github.com/elastic/elasticsearch/issues/125585
- class: org.elasticsearch.xpack.esql.parser.StatementParserTests
method: testInvalidJoinPatterns
issue: https://github.com/elastic/elasticsearch/issues/125536
- class: org.elasticsearch.xpack.security.authz.accesscontrol.IndicesPermissionTests
method: testAuthorizeDataStreamFailureIndices
issue: https://github.com/elastic/elasticsearch/issues/125555
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static ModelRegistryMetadata randomInstance() {
}

public static ModelRegistryMetadata randomInstance(boolean isUpgraded) {
if (rarely()) {
if (rarely() && isUpgraded == false) {
return ModelRegistryMetadata.EMPTY;
}
int size = randomIntBetween(1, 5);
Expand Down