Skip to content

Commit b8b1549

Browse files
committed
changing number of VMs from 100 to 1000
1 parent 17cd174 commit b8b1549

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/RecoveryServices/RecoveryServices.Backup.Models/Properties/Resources.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ Please contact Microsoft for further assistance.</value>
572572
<value>RetentionDuration in Days should be from 7 - 9999</value>
573573
</data>
574574
<data name="ProtectedItemsCountExceededException" xml:space="preserve">
575-
<value>Cannot configure backup for more than 100 VMs per policy</value>
575+
<value>Cannot configure backup for more than 1000 VMs per policy</value>
576576
</data>
577577
<data name="SoftdeleteNotImplementedException" xml:space="preserve">
578578
<value>Undo-deletion is only supported for AzureVMs. This method is not supported for other workloads.</value>

src/RecoveryServices/RecoveryServices.Backup.Providers/Providers/IaasVmPsBackupProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ public void RegisterContainer()
986986

987987
private void ValidateProtectedItemCount(AzureVmPolicy azureVmPolicy)
988988
{
989-
if (azureVmPolicy.ProtectedItemsCount > 100)
989+
if (azureVmPolicy.ProtectedItemsCount > 1000)
990990
{
991991
throw new ArgumentException(Resources.ProtectedItemsCountExceededException);
992992
}

0 commit comments

Comments
 (0)