Skip to content

Commit

Permalink
fix(fetch): _handleRetryPattern
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Nov 16, 2022
1 parent 1478401 commit fe4ac12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/fetch/src/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ async function _handleRetryPattern(options: FetchOptions): Promise<Response> {
options.retry--;
options.signal = externalAbortSignal;
await _wait(options.retryDelay);
return _handleCacheStrategy(options); // maybe cache updated by another request ;)
return _handleRetryPattern(options);
};

try {
Expand Down

0 comments on commit fe4ac12

Please sign in to comment.