Test: Not all shards maybe in a started state after the initial scroll search, but are after we do the stats call, so add ensureGreen to ensure we don't up with this discrepancy
This commit is contained in:
parent
24ca482918
commit
3f8908acfb
|
@ -151,6 +151,7 @@ public class SearchStatsTests extends ElasticsearchIntegrationTest {
|
|||
@Test
|
||||
public void testOpenContexts() {
|
||||
createIndex("test1");
|
||||
ensureGreen("test1");
|
||||
final int docs = scaledRandomIntBetween(20, 50);
|
||||
for (int i = 0; i < docs; i++) {
|
||||
client().prepareIndex("test1", "type", Integer.toString(i)).setSource("field", "value").execute().actionGet();
|
||||
|
|
Loading…
Reference in New Issue