Skip to content

Commit dc1979d

Browse files
committed
Merge pull request #55 from AzCiS/sanmah
Fix for TargetACR bug - 2092109
2 parents b160c19 + 9559f63 commit dc1979d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/Clone/StartAzureStorSimpleBackupCloneJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public override void ExecuteCmdlet()
9191
SourceSnapshot = Snapshot,
9292
ReturnWorkflowId = true,
9393
TargetVolName = CloneVolumeName,
94-
TargetACRList = TargetAccessControlRecords
94+
TargetACRList = TargetAccessControlRecords ?? new List<AccessControlRecord>()
9595
};
9696
response = StorSimpleClient.CloneVolume(sourceDeviceId, request);
9797
HandleDeviceJobResponse(response, "start");

0 commit comments

Comments
 (0)