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
6 changes: 3 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ tests:
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
method: test {p0=ml/start_data_frame_analytics/Test start given dest index is not empty}
issue: https://github.com/elastic/elasticsearch/issues/125909
- class: org.elasticsearch.xpack.esql.action.ManyShardsIT
method: testCancelUnnecessaryRequests
issue: https://github.com/elastic/elasticsearch/issues/125947
- class: org.elasticsearch.indices.stats.IndexStatsIT
method: testThrottleStats
issue: https://github.com/elastic/elasticsearch/issues/125910
- 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 @@ -260,6 +261,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