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 @@ -406,9 +406,6 @@ tests:
- class: org.elasticsearch.test.index.IndexVersionUtilsTests
method: testIndexCompatibleVersionMatches
issue: https://github.com/elastic/elasticsearch/issues/120760
- class: org.elasticsearch.search.CCSDuelIT
method: testTerminateAfter
issue: https://github.com/elastic/elasticsearch/issues/126085
- class: org.elasticsearch.smoketest.DocsClientYamlTestSuiteIT
method: test {yaml=reference/search/retriever/line_906}
issue: https://github.com/elastic/elasticsearch/issues/131041
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1333,6 +1333,7 @@ private static Map<String, Object> responseToMap(ObjectPath response) throws IOE
Map<String, Object> responseMap = XContentHelper.convertToMap(bytesReference, false, XContentType.JSON).v2();
assertNotNull(responseMap.put("took", -1));
responseMap.remove("num_reduce_phases");
responseMap.remove("terminated_early");
Map<String, Object> profile = (Map<String, Object>) responseMap.get("profile");
if (profile != null) {
List<Map<String, Object>> shards = (List<Map<String, Object>>) profile.get("shards");
Expand Down