From 3f5f9dfe019149639680fe8d9259bd0eb27a3adf Mon Sep 17 00:00:00 2001 From: Neha Bhargava <61847233+neha-bhargava@users.noreply.github.com> Date: Thu, 6 Jun 2024 14:14:41 -0700 Subject: [PATCH] Update --- .../ManagedIdentity/AzureArcManagedIdentitySource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/Microsoft.Identity.Client/ManagedIdentity/AzureArcManagedIdentitySource.cs b/src/client/Microsoft.Identity.Client/ManagedIdentity/AzureArcManagedIdentitySource.cs index bd085fb4c1..09bdc5a20c 100644 --- a/src/client/Microsoft.Identity.Client/ManagedIdentity/AzureArcManagedIdentitySource.cs +++ b/src/client/Microsoft.Identity.Client/ManagedIdentity/AzureArcManagedIdentitySource.cs @@ -192,7 +192,7 @@ private bool IsValidPath(string path) MsalErrorMessage.ManagedIdentityPlatformNotSupported); } - return path.Equals(expectedFilePath, StringComparison.OrdinalIgnoreCase); + return path.Equals(expectedFilePath); } } }