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 3b4839c commit a43af88Copy full SHA for a43af88
src/AzureAppConfigurationImpl.ts
@@ -835,6 +835,6 @@ function getValidFeatureFlagSelectors(selectors?: SettingSelector[]): SettingSel
835
}
836
837
function isFailoverableError(error: any): boolean {
838
- return isRestError(error) && (error.code === 'ENOTFOUND' ||
+ return isRestError(error) && (error.code === "ENOTFOUND" ||
839
(error.statusCode !== undefined && (error.statusCode === 401 || error.statusCode === 403 || error.statusCode === 408 || error.statusCode === 429 || error.statusCode >= 500)));
840
0 commit comments