From 46b676c0b127028d057f82c47b18df830fa26a49 Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Mon, 8 Mar 2021 16:32:30 +0100 Subject: [PATCH] vzdump: increase PBS 'backup' QMP call timeout Commit "a941bbd0 client: raise HTTP_TIMEOUT to 120s" in proxmox-backup did the same, however, we would now still fail after 60 seconds since the QMP call would time out. Increase the timeout here to the same +5 seconds to give some time to receive a response, so if the HTTP call in proxmox-backup times out, we can still get a useful error message instead of timing out the QMP call too. Signed-off-by: Stefan Reiter --- PVE/VZDump/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/VZDump/QemuServer.pm b/PVE/VZDump/QemuServer.pm index 901b366..5a9ffab 100644 --- a/PVE/VZDump/QemuServer.pm +++ b/PVE/VZDump/QemuServer.pm @@ -521,7 +521,7 @@ sub archive_pbs { $params->{'use-dirty-bitmap'} = JSON::true if $qemu_support->{'pbs-dirty-bitmap'} && !$is_template; - $params->{timeout} = 60; # give some time to connect to the backup server + $params->{timeout} = 125; # give some time to connect to the backup server my $res = eval { mon_cmd($vmid, "backup", %$params) }; my $qmperr = $@; -- 2.39.2