mirror of https://github.com/apache/cloudstack.git
bug 10447: don't set the reservation id to null
This commit is contained in:
parent
e00c011dcb
commit
040cffafca
|
|
@ -936,7 +936,7 @@ public class VirtualMachineManagerImpl implements VirtualMachineManager, Listene
|
|||
VirtualMachineGuru<T> vmGuru = getVmGuru(vm);
|
||||
|
||||
try {
|
||||
if (!stateTransitTo(vm, Event.StopRequested, vm.getHostId(), null)) {
|
||||
if (!stateTransitTo(vm, Event.StopRequested, vm.getHostId())) {
|
||||
throw new ConcurrentOperationException("VM is being operated on.");
|
||||
}
|
||||
} catch (NoTransitionException e1) {
|
||||
|
|
@ -958,6 +958,13 @@ public class VirtualMachineManagerImpl implements VirtualMachineManager, Listene
|
|||
return false;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
return stateTransitTo(vm, Event.AgentReportStopped, null);
|
||||
} catch (NoTransitionException e) {
|
||||
s_logger.warn("Unable to cleanup " + vm);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue