From: Dietmar Maurer Date: Tue, 13 Jun 2017 07:00:24 +0000 (+0200) Subject: get_replicatable_volumes: add $vmid parameter X-Git-Url: https://git.proxmox.com/?p=pve-guest-common.git;a=commitdiff_plain;h=54b79ff5e2b6b752e9f115720af8a0e392a8626e get_replicatable_volumes: add $vmid parameter --- diff --git a/PVE/AbstractConfig.pm b/PVE/AbstractConfig.pm index 1e82e77..fac3749 100644 --- a/PVE/AbstractConfig.pm +++ b/PVE/AbstractConfig.pm @@ -199,7 +199,7 @@ sub has_feature { # $cleanup: for cleanup - simply ignores volumes without replicate feature # $norerr: never raise exceptions - return undef instead sub get_replicatable_volumes { - my ($class, $storecfg, $conf, $cleanup, $noerr) = @_; + my ($class, $storecfg, $vmid, $conf, $cleanup, $noerr) = @_; die "implement me - abstract method\n"; }