Skip to content

Commit

Permalink
Reduce the log threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Кирилл committed Aug 1, 2024
1 parent f5bdca3 commit 9087717
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class RecursiveLowerBound(
!nonRetryableErrors.any { err -> it.message?.contains(err, true) ?: false }
}
.doAfterRetry {
if (it.totalRetries() > 100) {
if (it.totalRetries() > 30) {
log.warn(
"There are too much retries to calculate {} lower bound of upstream {}, " +
"probably this error with message `{}` is not retryable, please report it to dshackle devs",
Expand Down

0 comments on commit 9087717

Please sign in to comment.