diff --git a/PVE/Storage/ISCSIPlugin.pm b/PVE/Storage/ISCSIPlugin.pm index f3a402c..173ca1d 100644 --- a/PVE/Storage/ISCSIPlugin.pm +++ b/PVE/Storage/ISCSIPlugin.pm @@ -378,5 +378,10 @@ sub check_connection { return iscsi_test_portal($portal); } +sub volume_resize { + my ($class, $scfg, $storeid, $volname, $size, $running) = @_; + die "volume resize is not possible on iscsi device"; +} + 1;