get_bandwidt_limits: ignore 'undef' as storage
If one of the storages passed in $storage_list was not defined get_bandwidth_limit died (see [0], of an occurence of this). This patch changes the behavior to ignore undef as storage instead. [0] https://pve.proxmox.com/pipermail/pve-devel/2019-April/036515.html Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
This commit is contained in:
committed by
Thomas Lamprecht
parent
e638b21312
commit
396aedff95
@ -1646,6 +1646,7 @@ sub get_bandwidth_limit {
|
|||||||
|
|
||||||
my %done;
|
my %done;
|
||||||
foreach my $storage (@$storage_list) {
|
foreach my $storage (@$storage_list) {
|
||||||
|
next if !defined($storage);
|
||||||
# Avoid duplicate checks:
|
# Avoid duplicate checks:
|
||||||
next if $done{$storage};
|
next if $done{$storage};
|
||||||
$done{$storage} = 1;
|
$done{$storage} = 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user