From: Wolfgang Bumiller Date: Mon, 3 Jul 2017 09:58:41 +0000 (+0200) Subject: replication: we must call storage_migrate with with_snapshots true X-Git-Url: https://git.proxmox.com/?p=pve-guest-common.git;a=commitdiff_plain;h=d91bac5053de961be61b4efb4a995d934ae4bc23 replication: we must call storage_migrate with with_snapshots true --- diff --git a/PVE/Replication.pm b/PVE/Replication.pm index e176638..e53928e 100644 --- a/PVE/Replication.pm +++ b/PVE/Replication.pm @@ -152,7 +152,7 @@ sub replicate_volume { my $ratelimit_bps = int(1000000*$rate) if $rate; PVE::Storage::storage_migrate($storecfg, $volid, $ssh_info, $storeid, $volname, - $base_snapshot, $sync_snapname, $ratelimit_bps, $insecure); + $base_snapshot, $sync_snapname, $ratelimit_bps, $insecure, 1); }