diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 4b0805c..92dcc54 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -661,7 +661,9 @@ sub storage_info { next if !$info->{$storeid}; my $plugin = PVE::Storage::Plugin->lookup($scfg->{type}); - my ($total, $avail, $used, $active) = $plugin->status($storeid, $scfg, $cache); + my ($total, $avail, $used, $active); + eval { ($total, $avail, $used, $active) = $plugin->status($storeid, $scfg, $cache); }; + warn $@ if $@; next if !$active; $info->{$storeid}->{total} = $total; $info->{$storeid}->{avail} = $avail;