Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -356,9 +356,6 @@ tests:
- class: org.elasticsearch.indices.stats.IndexStatsIT
method: testThrottleStats
issue: https://github.com/elastic/elasticsearch/issues/125910
- class: org.elasticsearch.xpack.esql.action.ManyShardsIT
method: testCancelUnnecessaryRequests
issue: https://github.com/elastic/elasticsearch/issues/125947
- class: org.elasticsearch.xpack.ilm.actions.SearchableSnapshotActionIT
method: testResumingSearchableSnapshotFromPartialToFull
issue: https://github.com/elastic/elasticsearch/issues/125789
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import org.elasticsearch.rest.RestStatus;
import org.elasticsearch.search.MockSearchService;
import org.elasticsearch.search.SearchService;
import org.elasticsearch.test.junit.annotations.TestIssueLogging;
import org.elasticsearch.test.transport.MockTransportService;
import org.elasticsearch.transport.RemoteTransportException;
import org.elasticsearch.transport.TransportChannel;
Expand Down Expand Up @@ -259,6 +260,10 @@ public void testLimitConcurrentShards() {
}
}

@TestIssueLogging(
issueUrl = "https://github.com/elastic/elasticsearch/issues/125947",
value = "logger.org.elasticsearch.cluster.routing.allocation.ShardChangesObserver:TRACE"
)
public void testCancelUnnecessaryRequests() {
assumeTrue("Requires pragmas", canUseQueryPragmas());
internalCluster().ensureAtLeastNumDataNodes(3);
Expand Down