Fix sort method and Out of memory problem
This commit is contained in:
parent
4f91a06dd5
commit
3715509a13
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ foreach my $hostname ( sort(keys %Status) ) {
|
|||
# Get aggregate of compressed used size (octets)
|
||||
my $full_size = 0;
|
||||
my $backups_count = 0;
|
||||
foreach my $Backup (sort {$Backups[$a]->{num} cmp $Backups[$b]->{num}} @Backups) {
|
||||
foreach my $Backup (sort {$a->{num} cmp $b->{num}} @Backups) {
|
||||
if ( $full_size == 0 ) {
|
||||
$full_size += $Backup->{sizeExistComp};
|
||||
$full_size += $Backup->{sizeNewComp};
|
||||
|
|
Loading…
Reference in a new issue