Skip to content

Commit 30e4d83

Browse files
fix startup retry bug (#206)
1 parent 4e76094 commit 30e4d83

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/AzureAppConfigurationImpl.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,9 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
395395
if (isInputError(error)) {
396396
throw error;
397397
}
398+
if (isRestError(error) && !isFailoverableError(error)) {
399+
throw error;
400+
}
398401
if (abortSignal.aborted) {
399402
return;
400403
}

0 commit comments

Comments
 (0)