moodle_request_shutdown(): raise $CFG->apachemaxmem to 25MiB for 1.7 and newer

This commit is contained in:
martinlanghoff
2007-04-12 03:30:20 +00:00
parent c935b991a1
commit 7b6c65a560
+1 -1
View File
@@ -6529,7 +6529,7 @@ function moodle_request_shutdown() {
// but check just in case
if (function_exists('apache_child_terminate') && function_exists('memory_get_usage')) {
if (empty($CFG->apachemaxmem)) {
$CFG->apachemaxmem = 10000000; // default 10MiB
$CFG->apachemaxmem = 25000000; // default 25MiB
}
if (memory_get_usage() > (int)$CFG->apachemaxmem) {
trigger_error('Mem usage over $CFG->apachemaxmem: marking child for reaping.');