Skip to content

Commit

Permalink
fixes and unmutes testSearchableSnapshotShardsAreSkipped... (elastic#…
Browse files Browse the repository at this point in the history
…118133)

(cherry picked from commit 0a2c9fb)

# Conflicts:
#	muted-tests.yml
  • Loading branch information
piergm committed Dec 6, 2024
1 parent 0e0d624 commit ce69a68
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,6 @@ tests:
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
method: test {categorize.Categorize SYNC}
issue: https://github.com/elastic/elasticsearch/issues/113054
- class: org.elasticsearch.xpack.searchablesnapshots.SearchableSnapshotsCanMatchOnCoordinatorIntegTests
method: testSearchableSnapshotShardsAreSkippedBySearchRequestWithoutQueryingAnyNodeWhenTheyAreOutsideOfTheQueryRange
issue: https://github.com/elastic/elasticsearch/issues/116523
- class: org.elasticsearch.ingest.geoip.EnterpriseGeoIpDownloaderIT
method: testEnterpriseDownloaderTask
issue: https://github.com/elastic/elasticsearch/issues/115163
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public void testSearchableSnapshotShardsAreSkippedBySearchRequestWithoutQuerying
}
if (searchShardsResponse != null) {
for (SearchShardsGroup group : searchShardsResponse.getGroups()) {
assertFalse("no shard should be marked as skipped", group.skipped());
assertTrue("the shard is skipped because index value is outside the query time range", group.skipped());
}
}
}
Expand Down

0 comments on commit ce69a68

Please sign in to comment.