nvazquez commented on code in PR #6413:
URL: https://github.com/apache/cloudstack/pull/6413#discussion_r887830273


##########
engine/orchestration/src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java:
##########
@@ -1557,8 +1557,9 @@ public boolean getExecuteInSequence(final HypervisorType 
hypervisorType) {
             case LXC:
                 return false;
             case VMware:
-                final Boolean fullClone = 
HypervisorGuru.VmwareFullClone.value();
-                return fullClone;
+                final Boolean fullClone = getFullCloneConfiguration();
+                final Boolean allowParallel = 
getAllowParallelExecutionConfiguration();
+                return fullClone && !allowParallel;

Review Comment:
   I am not clear yet on this change's impact but it seems like a good 
improvement



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to