Skip to content

Commit 3a9f173

Browse files
committed
fix: conflict
1 parent f1c335f commit 3a9f173

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/handler/retry-handler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class RetryHandler {
158158
const retryTimeout =
159159
retryAfterHeader > 0
160160
? Math.min(retryAfterHeader, maxTimeout)
161-
: Math.min(timeout * timeoutFactor ** counter, maxTimeout)
161+
: Math.min(minTimeout * timeoutFactor ** counter, maxTimeout)
162162

163163
setTimeout(() => cb(null), retryTimeout)
164164
}

0 commit comments

Comments
 (0)