We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 599b64c commit 0a0f8d7Copy full SHA for 0a0f8d7
src/Storage/Storage.Management/ChangeLog.md
@@ -18,6 +18,7 @@
18
- Additional information about change #1
19
-->
20
## Upcoming Release
21
+* Updated Storage account cmdlet output context based on OAuth token
22
23
## Version 7.3.0
24
* Supported account tier Cold
src/Storage/Storage.Management/Common/LazyAzureStorageContext.cs
@@ -83,7 +83,11 @@ public override AzureSessionCredential Track2OauthToken {
83
{
84
if (_track2OauthToken == null)
85
86
- _track2OauthToken = _track2OAuthTokenFactory();
+ if (_track2OAuthTokenFactory == null)
87
+ {
88
+ return null;
89
+ }
90
+ _track2OauthToken = _track2OAuthTokenFactory();
91
return _track2OauthToken;
92
}
93
0 commit comments