mirror of https://github.com/apache/cloudstack.git
bug 10352: fixed the issue. I mistakenly threw an exception when I was not suppose to
This commit is contained in:
parent
9fa2e68be6
commit
36ee97334b
|
|
@ -513,7 +513,9 @@ public class VirtualMachineManagerImpl implements VirtualMachineManager, Listene
|
|||
return new Ternary<T, ReservationContext, ItWorkVO>(vmGuru.findById(vmId), context, work);
|
||||
}
|
||||
} catch (NoTransitionException e) {
|
||||
throw new CloudRuntimeException(e.getMessage());
|
||||
if (s_logger.isDebugEnabled()) {
|
||||
s_logger.debug("Unable to transition into Starting state due to " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
if (s_logger.isDebugEnabled()) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue