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 0a7a12b commit 2a774c3Copy full SHA for 2a774c3
packages/bundler-plugin-core/src/utils/fetchWithRetry.ts
@@ -22,6 +22,7 @@ export const fetchWithRetry = async ({
22
try {
23
debug(`Attempting to fetch ${name} from: ${url}, attempt: ${i + 1}`);
24
await delay(DEFAULT_RETRY_DELAY * i);
25
+
26
response = await fetch(url, requestData);
27
28
if (!response.ok) {
0 commit comments