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 9e59790 commit c52599aCopy full SHA for c52599a
src/AzureAppConfigurationImpl.ts
@@ -834,6 +834,7 @@ function getValidFeatureFlagSelectors(selectors?: SettingSelector[]): SettingSel
834
}
835
836
function isFailoverableError(error: any): boolean {
837
- return isRestError(error) && (error.code === "ENOTFOUND" ||
+ // ENOTFOUND: DNS lookup failed, ENOENT: no such file or directory
838
+ return isRestError(error) && (error.code === "ENOTFOUND" || error.code === "ENOENT" ||
839
(error.statusCode !== undefined && (error.statusCode === 401 || error.statusCode === 403 || error.statusCode === 408 || error.statusCode === 429 || error.statusCode >= 500)));
840
0 commit comments