We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a721a41 commit 1614504Copy full SHA for 1614504
src/main/java/me/itzg/helpers/curseforge/CurseForgeInstaller.java
@@ -754,7 +754,7 @@ private Mono<DownloadOrResolveResult> buildRetryableDownload(InstallContext con
754
)
755
// retry the deferred part above if one of the expected failure cases
756
.retryWhen(
757
- Retry.fixedDelay(BAD_FILE_ATTEMPTS, BAD_FILE_DELAY)
+ Retry.backoff(BAD_FILE_ATTEMPTS, BAD_FILE_DELAY)
758
.filter(throwable ->
759
throwable instanceof FileHashInvalidException ||
760
throwable instanceof FailedRequestException ||
0 commit comments