rhtyd commented on a change in pull request #2140: CLOUDSTACK-9951: Add support
for batch/bulk VM deployment option in CS
URL: https://github.com/apache/cloudstack/pull/2140#discussion_r136271188
##########
File path: server/src/com/cloud/vm/UserVmManagerImpl.java
##########
@@ -4194,8 +4206,54 @@ public void finalizeStop(VirtualMachineProfile profile,
Answer answer) {
}
}
+ private void serializeVMReservation(List<Long> vmIds) {
+ if (vmIds != null && !vmIds.isEmpty()) {
+ boolean wait = true;
+ int count = 0;
+ while (wait && count++ < 30) {
Review comment:
Should this be configurable?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services