Commit bed57d31 authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #236: do not pass fixed shutdown timeout

parent 19dd4fd1
......@@ -59,7 +59,7 @@ Ext.define('PVE.qemu.CmdMenu', {
return;
}
vm_command('shutdown', { timeout: 30 });
vm_command('shutdown');
});
}
},
......
......@@ -78,7 +78,7 @@ Ext.define('PVE.qemu.Config', {
disabled: !caps.vms['VM.PowerMgmt'],
confirmMsg: Ext.String.format(gettext("Do you really want to shutdown VM {0}?"), vmid),
handler: function() {
vm_command('shutdown', { timeout: 30 });
vm_command('shutdown');
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment