Since a few weeks, I get the following errors from the update-disk-quota Cronjob:
Here is the section of that script (It's the last line in the for loop that causes the warnings):
Code
- for my $sqlDbName ( keys %{$customerDatabases} ) {
- next unless grep($_ eq $sqlDbName, @{$databases});
- my $sqlDbTables = $dbh->selectall_hashref(
- "SHOW TABLE STATUS FROM " . $dbh->quote_identifier( $sqlDbName ), 1
- );
- next unless %{$sqlDbTables};
- $size += $_->{'Data_length'}+$_->{'Index_length'} for values %{$sqlDbTables};
- }
I only found this thread: Disk quota every night i-MSCP - An error has been raised
But that seems to be an other problem.
Any idea?