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 39d9a3d commit f8b76edCopy full SHA for f8b76ed
src/AzureAppConfigurationImpl.ts
@@ -369,7 +369,7 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
369
postAttempts += 1;
370
backoffDuration = calculateBackoffDuration(postAttempts);
371
}
372
- console.warn(`Failed to load. Error message: ${error.message}. It Will retry in ${backoffDuration} ms.`);
+ console.warn(`Failed to load. Error message: ${error.message}. Retrying in ${backoffDuration} ms.`);
373
await new Promise(resolve => setTimeout(resolve, backoffDuration));
374
375
} while (!abortSignal.aborted);
0 commit comments