[pve-devel] [PATCH v2 container 1/3] migration: fix snapshots boolean accounting
Wolfgang Bumiller
w.bumiller at proxmox.com
Tue Jun 22 14:18:25 CEST 2021
Signed-off-by: Wolfgang Bumiller <w.bumiller at proxmox.com>
---
No changes to v1.
src/PVE/LXC/Migrate.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/PVE/LXC/Migrate.pm b/src/PVE/LXC/Migrate.pm
index 3cd895d..ce1f7dd 100644
--- a/src/PVE/LXC/Migrate.pm
+++ b/src/PVE/LXC/Migrate.pm
@@ -146,7 +146,7 @@ sub phase1 {
}
$volhash->{$volid}->{ref} = defined($snapname) ? 'snapshot' : 'config';
- $volhash->{$volid}->{snapshots} = defined($snapname);
+ $volhash->{$volid}->{snapshots} = 1 if defined($snapname);
my ($path, $owner) = PVE::Storage::path($self->{storecfg}, $volid);
--
2.30.2
More information about the pve-devel
mailing list