[TEST] increased the number of index and delete ops to make it less likely that all ops exist as soft delete docs.

This commit is contained in:
Martijn van Groningen 2018-11-09 15:31:51 +01:00
parent 83152b3835
commit fba811fa3a
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public class ShardChangesTests extends ESSingleNodeTestCase {
.put("index.number_of_replicas", 0)) .put("index.number_of_replicas", 0))
.get(); .get();
for (int i = 0; i < 16; i++) { for (int i = 0; i < 32; i++) {
client().prepareIndex("index", "_doc", "1").setSource("{}", XContentType.JSON).get(); client().prepareIndex("index", "_doc", "1").setSource("{}", XContentType.JSON).get();
client().prepareDelete("index", "_doc", "1").get(); client().prepareDelete("index", "_doc", "1").get();
} }