Skip to content

Commit 47dc74c

Browse files
authored
[Accounts]Removed survey on error message (#20510)
* [Accounts]removed message in Resolve-AzError. * Update ChangeLog.md
1 parent 2330000 commit 47dc74c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Accounts/Accounts/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
## Upcoming Release
2222
* Enabled AzKeyStore with keyring in Linux.
2323
* Fixed a typo in GetAzureRmContextAutosaveSetting.cs changing the cmdlet class name from GetzureRmContextAutosaveSetting to GetAzureRmContextAutosaveSetting
24+
* Removed survey on error message in `Resolve-AzError`. [#20398]
2425

2526
## Version 2.10.4
2627
* Enabled caching tokens when logging in with a client assertion. This fixed the incorrectly short lifespan of tokens.

src/Accounts/Accounts/Errors/ResolveError.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public override void ExecuteCmdlet()
8282
}
8383
}
8484
var informationMessage = new HostInformationMessage();
85-
informationMessage.Message = $"{Environment.NewLine}{AzureProfileConstants.AzurePowerShellFeedbackMessage}{Environment.NewLine}";
85+
informationMessage.Message = $"{Environment.NewLine}";
8686
informationMessage.NoNewLine = false;
8787
WriteInformation(informationMessage, new string[] { "PSHOST" });
8888
}

0 commit comments

Comments
 (0)