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 2a2611d6f6
commit 12068f957c
1 changed files with 1 additions and 1 deletions

View File

@ -3003,7 +3003,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;