Skip to content

Commit 14fa3fb

Browse files
committed
fix lint
1 parent 5c495e3 commit 14fa3fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AzureAppConfigurationImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,6 @@ function getValidFeatureFlagSelectors(selectors?: SettingSelector[]): SettingSel
698698
}
699699

700700
function isFailoverableError(error: any): boolean {
701-
return isRestError(error) && (error.code === 'ENOTFOUND' ||
701+
return isRestError(error) && (error.code === "ENOTFOUND" ||
702702
(error.statusCode !== undefined && (error.statusCode === 401 || error.statusCode === 403 || error.statusCode === 408 || error.statusCode === 429 || error.statusCode >= 500)));
703703
}

0 commit comments

Comments
 (0)