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 5c495e3 commit 14fa3fbCopy full SHA for 14fa3fb
src/AzureAppConfigurationImpl.ts
@@ -698,6 +698,6 @@ function getValidFeatureFlagSelectors(selectors?: SettingSelector[]): SettingSel
698
}
699
700
function isFailoverableError(error: any): boolean {
701
- return isRestError(error) && (error.code === 'ENOTFOUND' ||
+ return isRestError(error) && (error.code === "ENOTFOUND" ||
702
(error.statusCode !== undefined && (error.statusCode === 401 || error.statusCode === 403 || error.statusCode === 408 || error.statusCode === 429 || error.statusCode >= 500)));
703
0 commit comments