From 7fd0d13a0cde21b1811cc87a6f549e3057cb5e5b Mon Sep 17 00:00:00 2001 From: Scott Schaab Date: Tue, 13 Oct 2020 16:31:06 -0700 Subject: [PATCH] [Identity] Fix attribute values for MSAL extension config of gnome keyring --- sdk/identity/Azure.Identity/src/Constants.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/identity/Azure.Identity/src/Constants.cs b/sdk/identity/Azure.Identity/src/Constants.cs index d726535fd9db1..97622fd6afdf2 100644 --- a/sdk/identity/Azure.Identity/src/Constants.cs +++ b/sdk/identity/Azure.Identity/src/Constants.cs @@ -36,9 +36,9 @@ internal class Constants public const string DefaultMsalTokenCacheKeyringCollection = "default"; - public static readonly KeyValuePair DefaultMsaltokenCacheKeyringAttribute1 = new KeyValuePair("MsalClientID", null); + public static readonly KeyValuePair DefaultMsaltokenCacheKeyringAttribute1 = new KeyValuePair("MsalClientID", "Microsoft.Developer.IdentityService"); - public static readonly KeyValuePair DefaultMsaltokenCacheKeyringAttribute2 = new KeyValuePair("Microsoft.Developer.IdentityService", null); + public static readonly KeyValuePair DefaultMsaltokenCacheKeyringAttribute2 = new KeyValuePair("Microsoft.Developer.IdentityService", "1.0.0.0"); public const string DefaultMsalTokenCacheName = "msal.cache"; }