You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/identity/Azure.Identity/CHANGELOG.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@
7
7
### Breaking Changes
8
8
9
9
### Bugs Fixed
10
-
- Fixed an issue that prevented `ManagedIdentityCredential` from attempting to detect if Workload Identity is enabled in the current environment. [#46653](https://github.com/Azure/azure-sdk-for-net/issues/46653)
11
-
- Fixed an issue that prevented `DefaultAzureCredential` from progressing past `ManagedIdentityCredential` in some scenarios where the identity was not available. [#46709](https://github.com/Azure/azure-sdk-for-net/issues/46709)
10
+
- Fixed a regression that prevented `ManagedIdentityCredential` from attempting to detect if Workload Identity is enabled in the current environment. [#46653](https://github.com/Azure/azure-sdk-for-net/issues/46653)
11
+
- Fixed a regression that prevented `DefaultAzureCredential` from progressing past `ManagedIdentityCredential` in some scenarios where the identity was not available. [#46709](https://github.com/Azure/azure-sdk-for-net/issues/46709)
Copy file name to clipboardExpand all lines: sdk/identity/Azure.Identity/src/ImdsManagedIdentityProbeSource.cs
+23-3Lines changed: 23 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@
6
6
usingSystem.Threading;
7
7
usingSystem.Threading.Tasks;
8
8
usingAzure.Core;
9
+
usingMicrosoft.Identity.Client;
9
10
10
11
namespaceAzure.Identity
11
12
{
@@ -22,6 +23,7 @@ internal class ImdsManagedIdentityProbeSource : ManagedIdentitySource
22
23
internalconststringTimeoutError="ManagedIdentityCredential authentication unavailable. The request to the managed identity endpoint timed out.";
23
24
internalconststringGatewayError="ManagedIdentityCredential authentication unavailable. The request failed due to a gateway error.";
24
25
internalconststringAggregateError="ManagedIdentityCredential authentication unavailable. Multiple attempts failed to obtain a token from the managed identity endpoint.";
26
+
internalconststringUnknownError="ManagedIdentityCredential authentication unavailable. An unexpected error has occurred.";
0 commit comments