mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-22 21:05:23 +00:00
Add test logging for #35644
Adding logging to confirm the suspicion that there might be another old index lingering around in the test cluster in cases where this test occasionally fails.
This commit is contained in:
parent
a9eccbcd02
commit
c595a73c70
@ -1254,6 +1254,14 @@ public class SearchIT extends ESRestHighLevelClientTestCase {
|
||||
CountRequest countRequest = new CountRequest();
|
||||
CountResponse countResponse = execute(countRequest, highLevelClient()::count, highLevelClient()::countAsync);
|
||||
assertCountHeader(countResponse);
|
||||
// add logging to get more info about why https://github.com/elastic/elasticsearch/issues/35644 is failing
|
||||
// TODO remove this once #35644 is fixed
|
||||
if (countResponse.getCount() != 12) {
|
||||
SearchRequest searchRequest = new SearchRequest();
|
||||
searchRequest.source(new SearchSourceBuilder().size(20));
|
||||
SearchResponse searchResponse = execute(searchRequest, highLevelClient()::search, highLevelClient()::searchAsync);
|
||||
logger.info("Unexpected hit count, was expecting 12 hits but got: " + searchResponse.toString());
|
||||
}
|
||||
assertEquals(12, countResponse.getCount());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user