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:
Martijn van Groningen 2015-04-03 18:30:14 +02:00
parent 24ca482918
commit 3f8908acfb
1 changed files with 1 additions and 0 deletions

View File

@ -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();