Skip to content

Commit 9067924

Browse files
reduce default backoff for assertWithRetry to 2
1 parent 50fd99a commit 9067924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/integration/java/io/pinecone/helpers/AssertRetry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class AssertRetry {
1010
private static final int delay = 1500;
1111

1212
public static void assertWithRetry(AssertionRunnable assertionRunnable) throws InterruptedException, PineconeException {
13-
assertWithRetry(assertionRunnable, 3);
13+
assertWithRetry(assertionRunnable, 2);
1414
}
1515

1616
public static void assertWithRetry(AssertionRunnable assertionRunnable, int backOff) throws AssertionError, InterruptedException {

0 commit comments

Comments
 (0)