Skip to content

Commit 6fd4cdc

Browse files
♻️ increase async retry timers (#221)
1 parent 5ccf57c commit 6fd4cdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/mindee/AsyncPollingOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ private AsyncPollingOptions(
2929
) {
3030
this.initialDelaySec = initialDelaySec == null ? 2.0 : initialDelaySec;
3131
this.intervalSec = intervalSec == null ? 1.5 : intervalSec;
32-
this.maxRetries = maxRetries == null ? 40 : maxRetries;
32+
this.maxRetries = maxRetries == null ? 80 : maxRetries;
3333
}
3434
}

0 commit comments

Comments
 (0)