PVE::Storage::volume_snapshot_list - remove $prefix parameter

Always return the full list of snapshots. Users of this library can easily
filter with a simply 'grep' instead.
This commit is contained in:
Dietmar Maurer
2017-06-07 06:20:07 +02:00
parent c2bce0ef63
commit 8b622c2dff
4 changed files with 6 additions and 6 deletions

View File

@ -363,7 +363,7 @@ sub volume_has_feature {
}
sub volume_snapshot_list {
my ($class, $scfg, $storeid, $volname, $prefix) = @_;
my ($class, $scfg, $storeid, $volname) = @_;
# return an empty array if dataset does not exist.
die "Volume_snapshot_list is not implemented for ZFS over iSCSI.\n";
}