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 ac33118 commit 3528e87Copy full SHA for 3528e87
src/load.ts
@@ -49,7 +49,8 @@ export async function load(
49
}
50
51
try {
52
- const appConfiguration = new AzureAppConfigurationImpl(clientManager, options, credentialOrOptions === emptyTokenCredential);
+ const isCdnUsed: boolean = credentialOrOptions === emptyTokenCredential;
53
+ const appConfiguration = new AzureAppConfigurationImpl(clientManager, options, isCdnUsed);
54
await appConfiguration.load();
55
return appConfiguration;
56
} catch (error) {
0 commit comments