Skip to content

Commit 47e9e72

Browse files
committed
reduce maximum number of writes to speed up test
1 parent 75304f4 commit 47e9e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/ccr/src/test/java/org/elasticsearch/xpack/ccr/action/ShardChangesActionTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void testGetOperations() throws Exception {
4646
.build();
4747
final IndexService indexService = createIndex("index", settings);
4848

49-
final int numWrites = randomIntBetween(2, 8192);
49+
final int numWrites = randomIntBetween(2, 4096);
5050
for (int i = 0; i < numWrites; i++) {
5151
client().prepareIndex("index", "doc", Integer.toString(i)).setSource("{}", XContentType.JSON).get();
5252
}

0 commit comments

Comments
 (0)