Fix some memory limit values not correctly converting to bytes

This commit is contained in:
Jared Burke 2018-10-15 01:26:45 -05:00
parent 74693979db
commit 4557108805
1 changed files with 2 additions and 2 deletions

View File

@ -146,10 +146,10 @@ abstract class WC_Background_Process extends WP_Background_Process {
if ( ! $memory_limit || -1 === intval( $memory_limit ) ) {
// Unlimited, set to 32GB.
$memory_limit = '32000M';
$memory_limit = '32G';
}
return intval( $memory_limit ) * 1024 * 1024;
return wp_convert_hr_to_bytes( $memory_limit );
}
/**