Merge pull request #21557 from jdeeburke/fix-memory-limit-byte-values
Fix some memory limit values not correctly converting to bytes
This commit is contained in:
commit
e4796cfa75
|
@ -146,10 +146,10 @@ abstract class WC_Background_Process extends WP_Background_Process {
|
||||||
|
|
||||||
if ( ! $memory_limit || -1 === intval( $memory_limit ) ) {
|
if ( ! $memory_limit || -1 === intval( $memory_limit ) ) {
|
||||||
// Unlimited, set to 32GB.
|
// Unlimited, set to 32GB.
|
||||||
$memory_limit = '32000M';
|
$memory_limit = '32G';
|
||||||
}
|
}
|
||||||
|
|
||||||
return intval( $memory_limit ) * 1024 * 1024;
|
return wp_convert_hr_to_bytes( $memory_limit );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue