Skip to content

Commit 52232b9

Browse files
authored
Merge pull request #2135 from shapeblue/force-stop-vm-kvm
[BLOCKER] CLOUDSTACK-9860: Fix stackoverflow issue
2 parents 48f413a + e197652 commit 52232b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/hypervisors/kvm/src/com/cloud/hypervisor/kvm/resource/LibvirtComputingResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2733,7 +2733,7 @@ public String stopVM(final Connect conn, final String vmName, final boolean forc
27332733
if (forceStop) {
27342734
return stopVMInternal(conn, vmName, true);
27352735
}
2736-
String ret = stopVM(conn, vmName, false);
2736+
String ret = stopVMInternal(conn, vmName, false);
27372737
if (ret == Script.ERR_TIMEOUT) {
27382738
ret = stopVMInternal(conn, vmName, true);
27392739
} else if (ret != null) {

0 commit comments

Comments
 (0)