Skip to content

Commit e334330

Browse files
committed
Reduce iterations
1 parent 8ccd79a commit e334330

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/internalClusterTest/java/org/elasticsearch/synonyms/SynonymsManagementAPIServiceIT.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void onFailure(Exception e) {
129129
latch.await(5, TimeUnit.SECONDS);
130130
}
131131

132-
@Repeat(iterations=1000)
132+
@Repeat(iterations=500)
133133
public void testCreateTooManySynonymsUsingRuleUpdates() throws InterruptedException {
134134
CountDownLatch latch = new CountDownLatch(1);
135135
int rulesToUpdate = randomIntBetween(1, 10);
@@ -206,7 +206,7 @@ public void onFailure(Exception e) {
206206
latch.await(5, TimeUnit.SECONDS);
207207
}
208208

209-
@Repeat(iterations=1000)
209+
@Repeat(iterations=500)
210210
public void testUpdateRuleWithMaxSynonyms() throws InterruptedException {
211211
CountDownLatch latch = new CountDownLatch(1);
212212
String synonymSetId = randomIdentifier();
@@ -242,7 +242,7 @@ public void onFailure(Exception e) {
242242
latch.await(5, TimeUnit.SECONDS);
243243
}
244244

245-
@Repeat(iterations=1000)
245+
@Repeat(iterations=500)
246246
public void testCreateRuleWithMaxSynonyms() throws InterruptedException {
247247
CountDownLatch latch = new CountDownLatch(1);
248248
String synonymSetId = randomIdentifier();

0 commit comments

Comments
 (0)