If the load is too high, now not only the poller but also the page delivery will stop.

This commit is contained in:
Michael Vogel 2015-03-15 07:45:50 +01:00
parent 82abc32a14
commit ae172a9cec
4 changed files with 17 additions and 3 deletions

View file

@ -60,7 +60,7 @@ function delivery_run(&$argv, &$argc){
if(function_exists('sys_getloadavg')) {
$load = sys_getloadavg();
if(intval($load[0]) > $maxsysload) {
logger('system: load ' . $load . ' too high. Delivery deferred to next queue run.');
logger('system: load ' . $load[0] . ' too high. Delivery deferred to next queue run.');
return;
}
}