-
Notifications
You must be signed in to change notification settings - Fork 4k
Azure Site Recovery services powershell changes #1553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1) Disable-DR fix for next-link 2) Fix for issue in filtering E2E network mapping with E2A network mappings 3) Typo fix for ResourceGroupName in New-AzureRmRecoveryServicesVault and New-AzureRmSiteRecoveryVault 4) Removing unnecessary aliases
…on querying the same
…l fields of error object
…dev151125release
…dev151125release
Hi @avneeshrai, I'm your friendly neighborhood Azure Pull Request Bot (You can call me AZPRBOT). Thanks for your contribution!
TTYL, AZPRBOT; |
foreach (ARMExceptionDetails detail in error.Error.Details) | ||
{ | ||
exceptionMessage = exceptionMessage + string.Concat( | ||
string.IsNullOrEmpty(detail.ErrorCode) ? "" : "\nErrorCode: " + detail.ErrorCode, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use SrtingBuffer and then do AppendLine instead of adding \n in at each line. This code may run on non windows machines in the future and the output will be messed up.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Taken
Azure Site Recovery services powershell changes
No description provided.