bug 10503: Return StopAnswer status as false while stopping an already stopped Vm

status 10503: resolved fixed
This commit is contained in:
kishan 2011-07-01 13:54:43 +05:30
parent 36d7ee5634
commit dde4b48088

View File

@ -3058,7 +3058,7 @@ public abstract class CitrixResourceBase implements ServerResource, HypervisorRe
synchronized (_vms) {
_vms.remove(vmName);
}
return new StopAnswer(cmd, "VM does not exist", 0, 0L, 0L);
return new StopAnswer(cmd, "VM does not exist");
}
Long bytesSent = 0L;
Long bytesRcvd = 0L;