mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
remove check for failure, might rarely not fail at all
This commit is contained in:
parent
b5ad1c257e
commit
7a082cea4f
@ -70,18 +70,12 @@ public class SearchWithRejectionsTests extends ElasticsearchIntegrationTest {
|
||||
.setSearchType(searchType)
|
||||
.execute();
|
||||
}
|
||||
int failures = 0;
|
||||
for (int i = 0; i < numSearches; i++) {
|
||||
try {
|
||||
SearchResponse searchResponse = responses[i].get();
|
||||
if (searchResponse.getFailedShards() > 0) {
|
||||
failures++;
|
||||
}
|
||||
responses[i].get();
|
||||
} catch (Throwable t) {
|
||||
failures++;
|
||||
}
|
||||
}
|
||||
assertThat(failures, greaterThanOrEqualTo(1));
|
||||
awaitBusy(new Predicate<Object>() {
|
||||
@Override
|
||||
public boolean apply(Object input) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user