]> git.proxmox.com Git - qemu-server.git/commitdiff
Use new storage_migrate interface
authorFabian Ebner <f.ebner@proxmox.com>
Wed, 8 Apr 2020 09:25:01 +0000 (11:25 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Wed, 8 Apr 2020 20:11:54 +0000 (22:11 +0200)
Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
PVE/QemuMigrate.pm

index 2925b90d14320db71d8c812921879d24906fb38c..0bcbd044690dc564764e5932d12ba6966882fb34 100644 (file)
@@ -541,15 +541,19 @@ sub sync_disks {
                next if $self->{replicated_volumes}->{$volid};
                push @{$self->{volumes}}, $volid;
                my $opts = $self->{opts};
-               my $insecure = $opts->{migration_type} eq 'insecure';
-               my $with_snapshots = $local_volumes->{$volid}->{snapshots};
                # use 'migrate' limit for transfer to other node
                my $bwlimit = PVE::Storage::get_bandwidth_limit('migration', [$targetsid, $sid], $opts->{bwlimit});
                # JSONSchema and get_bandwidth_limit use kbps - storage_migrate bps
                $bwlimit = $bwlimit * 1024 if defined($bwlimit);
 
-               PVE::Storage::storage_migrate($storecfg, $volid, $self->{ssh_info}, $targetsid,
-                                             undef, undef, undef, $bwlimit, $insecure, $with_snapshots);
+               my $storage_migrate_opts = {
+                   'bwlimit' => $bwlimit,
+                   'insecure' => $opts->{migration_type} eq 'insecure',
+                   'with_snapshots' => $local_volumes->{$volid}->{snapshots},
+               };
+
+               PVE::Storage::storage_migrate($storecfg, $volid, $self->{ssh_info},
+                                             $targetsid, $storage_migrate_opts);
            }
        }
     };