remove germany and us national clouds (#21825)

This commit is contained in:
Christopher Suh
2023-02-02 16:11:04 -08:00
committed by GitHub
parent 95d4f130c6
commit 8f638be687
4 changed files with 3 additions and 131 deletions

View File

@@ -144,7 +144,8 @@ export class AzureAccountProviderService implements vscode.Disposable {
const isSaw: boolean = vscode.env.appName.toLowerCase().indexOf(Constants.Saw) > 0;
const noSystemKeychain = vscode.workspace.getConfiguration(Constants.AzureSection).get<boolean>(Constants.NoSystemKeyChainSection);
const tokenCacheKey = `azureTokenCache-${provider.metadata.id}`;
const tokenCacheKeyMsal = `azureTokenCacheMsal-${provider.metadata.id}`;
// Hardcode the MSAL Cache Key so there is only one cache location
const tokenCacheKeyMsal = `azureTokenCacheMsal-azure_publicCloud`;
try {
if (!this._credentialProvider) {
throw new Error('Credential provider not registered');