Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,10 @@ public override void ExecuteCmdlet()
containerNameResponse = HelperUtils.GetContainerUri(
keyValueDictResponse, itemResponse.Properties.ItemId);

if (String.Compare(itemNameResponse, itemName, true) == 0 &&
String.Compare(containerUri.Split(';')[3], containerNameResponse.Split(';')[2], true) == 0)
{
if((String.Compare(itemNameResponse, itemName, true) == 0) &&
((itemType.Contains("sqlavailabilitygroup") && String.Compare(containerUri.Split(';')[1], containerNameResponse, true) == 0)
|| (String.Compare(containerUri.Split(';')[3], containerNameResponse.Split(';')[2], true) == 0)))
{
intentName = itemResponse.Name;
break;
}
Expand Down
1 change: 1 addition & 0 deletions src/RecoveryServices/RecoveryServices/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Fixed Disable SQL AG AutoProtection.
* Added cross tenant DS Move.
* Removed restriction to fetch recovery points only for a 30 days time range.
* Enabled CRR for new regions.
Expand Down