partially fix #3056: try to cancel backup without uuid

if the 'backup' qmp call itself times out or fails, we still want to
try to cancel the backup, else it can happen that there is still
a backup running even when vzdump thinks it was canceled

qapi docs says that backup cancel always returns success, even
if no backup is running

since we hold a global and a per vm lock for the backup, this should be
ok, since we should not reach this code without that lock

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-10-19 16:11:38 +02:00 committed by Thomas Lamprecht
parent acc10e5159
commit edae17185b

View File

@ -577,7 +577,7 @@ sub archive_pbs {
my $err = $@;
if ($err) {
$self->logerr($err);
$self->mon_backup_cancel($vmid) if defined($backup_job_uuid);
$self->mon_backup_cancel($vmid);
}
$self->restore_vm_power_state($vmid);
@ -754,7 +754,7 @@ sub archive_vma {
my $err = $@;
if ($err) {
$self->logerr($err);
$self->mon_backup_cancel($vmid) if defined($backup_job_uuid);
$self->mon_backup_cancel($vmid);
}
$self->restore_vm_power_state($vmid);