Skip to content

Commit 3528e87

Browse files
update
1 parent ac33118 commit 3528e87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/load.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ export async function load(
4949
}
5050

5151
try {
52-
const appConfiguration = new AzureAppConfigurationImpl(clientManager, options, credentialOrOptions === emptyTokenCredential);
52+
const isCdnUsed: boolean = credentialOrOptions === emptyTokenCredential;
53+
const appConfiguration = new AzureAppConfigurationImpl(clientManager, options, isCdnUsed);
5354
await appConfiguration.load();
5455
return appConfiguration;
5556
} catch (error) {

0 commit comments

Comments
 (0)