Skip to content

Commit

Permalink
[Identity] Fix attribute values for MSAL extension config of gnome ke…
Browse files Browse the repository at this point in the history
…yring (Azure#15944)
  • Loading branch information
schaabs authored and annelo-msft committed Feb 17, 2021
1 parent 0028491 commit c15aa97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/identity/Azure.Identity/src/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ internal class Constants

public const string DefaultMsalTokenCacheKeyringCollection = "default";

public static readonly KeyValuePair<string, string> DefaultMsaltokenCacheKeyringAttribute1 = new KeyValuePair<string, string>("MsalClientID", null);
public static readonly KeyValuePair<string, string> DefaultMsaltokenCacheKeyringAttribute1 = new KeyValuePair<string, string>("MsalClientID", "Microsoft.Developer.IdentityService");

public static readonly KeyValuePair<string, string> DefaultMsaltokenCacheKeyringAttribute2 = new KeyValuePair<string, string>("Microsoft.Developer.IdentityService", null);
public static readonly KeyValuePair<string, string> DefaultMsaltokenCacheKeyringAttribute2 = new KeyValuePair<string, string>("Microsoft.Developer.IdentityService", "1.0.0.0");

public const string DefaultMsalTokenCacheName = "msal.cache";
}
Expand Down

0 comments on commit c15aa97

Please sign in to comment.