You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If Retry-After is 0, i.e. "retry immediately", then the request is not retried at all. (The problem is that 0 returned from _calculateRetryDelay is treaded as "stop retry").
IMO if Retry-After is above maxRetryAfter, then it should be capped to maxRetryAfter and not that the retry is stopped. See
Retry algorithm has several problems:
delay(ms)
wait is not abortable bythis._options.signal
, seeky/source/core/Ky.ts
Line 228 in 2049aff
Retry-After
is 0, i.e. "retry immediately", then the request is not retried at all. (The problem is that 0 returned from_calculateRetryDelay
is treaded as "stop retry").Retry-After
is abovemaxRetryAfter
, then it should be capped tomaxRetryAfter
and not that the retry is stopped. Seeky/source/core/Ky.ts
Line 194 in 2049aff
The text was updated successfully, but these errors were encountered: