Skip to content

Commit b7cba09

Browse files
authored
Azure Site Recovery - Minor bug fixes in Update policy (#15957)
* RCM multi appliance support * added missing changes * fixed md file online version * Fixing the RCM 540 reprotect and CS failback disable bugs * change log * VMware to Azure get and update policy fix
1 parent 20e4a17 commit b7cba09

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSObjects.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -782,9 +782,11 @@ public ASRPolicy(
782782
RecoveryPointHistoryInMinutes = (int)details.RecoveryPointHistoryInMinutes,
783783
CrashConsistentFrequencyInMinutes =
784784
(int)details.CrashConsistentFrequencyInMinutes,
785-
MultiVmSyncStatus = details.EnableMultiVmSync.Equals(Constants.True) ?
786-
Constants.Enable :
787-
Constants.Disable
785+
MultiVmSyncStatus =
786+
details.EnableMultiVmSync.Equals(
787+
Constants.True, StringComparison.OrdinalIgnoreCase) ?
788+
Constants.Enable :
789+
Constants.Disable
788790
};
789791

790792
this.ReplicationProviderSettings = replicationProviderSettings;

src/RecoveryServices/RecoveryServices/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21-
* Azure Site Recovery bug fixes for VMware to Azure Reprotect and Disable scenarios.
21+
* Azure Site Recovery bug fixes for VMware to Azure Reprotect, Update policy and Disable scenarios.
2222
* Azure Backup added the support for UserAssigned MSI in RecoveryServices Vault.
2323

2424
## Version 4.6.0

0 commit comments

Comments
 (0)