From 39abafc8e7e944a344f8cc68243410e7ee26cf62 Mon Sep 17 00:00:00 2001 From: Moayad Almalat Date: Wed, 23 Feb 2022 10:03:24 +0100 Subject: [PATCH] fix #3733: add 20 seconds timeout when VM backup stopped --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 9fdb4c43..243c2e52 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -5551,7 +5551,7 @@ sub vm_start_nolock { }; # Issues with the above 'stop' not being fully completed are extremely rare, a very low # timeout should be more than enough here... - PVE::Systemd::wait_for_unit_removed("$vmid.scope", 5); + PVE::Systemd::wait_for_unit_removed("$vmid.scope", 20); my $cpuunits = get_cpuunits($conf);