From a548fd488fd86e620e4e91d2e5e95d8abe1b54b3 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Fri, 27 Jul 2012 08:00:14 +0200 Subject: [PATCH] iscsiplugin:volume_size_info return nothing for now, as we can't get volume used inside the volume, stats are empty. Signed-off-by: Alexandre Derumier --- PVE/Storage/ISCSIPlugin.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/PVE/Storage/ISCSIPlugin.pm b/PVE/Storage/ISCSIPlugin.pm index ef88143..c361a20 100644 --- a/PVE/Storage/ISCSIPlugin.pm +++ b/PVE/Storage/ISCSIPlugin.pm @@ -378,4 +378,10 @@ sub check_connection { return iscsi_test_portal($portal); } +sub volume_size_info { + my ($class, $scfg, $storeid, $volname, $timeout) = @_; + + return undef; +} + 1;