File tree 1 file changed +0
-8
lines changed
client/rest-high-level/src/test/java/org/elasticsearch/client
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -1299,14 +1299,6 @@ public void testCountAllIndicesNoQuery() throws IOException {
1299
1299
CountRequest countRequest = new CountRequest ();
1300
1300
CountResponse countResponse = execute (countRequest , highLevelClient ()::count , highLevelClient ()::countAsync );
1301
1301
assertCountHeader (countResponse );
1302
- // add logging to get more info about why https://github.com/elastic/elasticsearch/issues/35644 is failing
1303
- // TODO remove this once #35644 is fixed
1304
- if (countResponse .getCount () != 12 ) {
1305
- SearchRequest searchRequest = new SearchRequest ();
1306
- searchRequest .source (new SearchSourceBuilder ().size (20 ));
1307
- SearchResponse searchResponse = execute (searchRequest , highLevelClient ()::search , highLevelClient ()::searchAsync );
1308
- logger .info ("Unexpected hit count, was expecting 12 hits but got: " + searchResponse .toString ());
1309
- }
1310
1302
assertEquals (12 , countResponse .getCount ());
1311
1303
}
1312
1304
You can’t perform that action at this time.
0 commit comments