]> git.proxmox.com Git - qemu-server.git/commitdiff
fix #1734: clone VM: if deactivation fails demote error to warning
authorHannes Duerr <h.duerr@proxmox.com>
Wed, 6 Mar 2024 14:08:34 +0000 (15:08 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 8 Mar 2024 12:40:42 +0000 (13:40 +0100)
When a template with disks on LVM is cloned to another node, the
volumes are first activated, then cloned and deactivated again after
cloning.

However, if clones of this template are now created in parallel to
other nodes, it can happen that one of the tasks can no longer
deactivate the logical volume because it is still in use.  The reason
for this is that we use a shared lock.
Since the failed deactivation does not necessarily have consequences,
we downgrade the error to a warning, which means that the clone tasks
will continue to be completed successfully.

Signed-off-by: Hannes Duerr <h.duerr@proxmox.com>
Tested-by: Friedrich Weber <f.weber@proxmox.com>
PVE/API2/Qemu.pm

index 69c5896af48b1374f52ba0ee8c88e0f109cb43d5..1ff5abe40edf44274f513a7ca375a45e1772cbfd 100644 (file)
@@ -48,6 +48,7 @@ use PVE::DataCenterConfig;
 use PVE::SSHInfo;
 use PVE::Replication;
 use PVE::StorageTunnel;
+use PVE::RESTEnvironment qw(log_warn);
 
 BEGIN {
     if (!$ENV{PVE_GENERATING_DOCS}) {
@@ -3820,7 +3821,11 @@ __PACKAGE__->register_method({
 
                if ($target) {
                    # always deactivate volumes - avoid lvm LVs to be active on several nodes
-                   PVE::Storage::deactivate_volumes($storecfg, $vollist, $snapname) if !$running;
+                   eval {
+                       PVE::Storage::deactivate_volumes($storecfg, $vollist, $snapname) if !$running;
+                   };
+                   log_warn($@) if ($@);
+
                    PVE::Storage::deactivate_volumes($storecfg, $newvollist);
 
                    my $newconffile = PVE::QemuConfig->config_file($newid, $target);