fix bug #236: do not pass fixed shutdown timeout

This commit is contained in:
Dietmar Maurer 2012-08-21 12:57:11 +02:00
parent d7e57fb212
commit de3db54f23
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ Ext.define('PVE.qemu.CmdMenu', {
return;
}
vm_command('shutdown', { timeout: 30 });
vm_command('shutdown');
});
}
},

View File

@ -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');
}
});