mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
If the load is too high, now not only the poller but also the page delivery will stop.
This commit is contained in:
parent
82abc32a14
commit
ae172a9cec
4 changed files with 17 additions and 3 deletions
|
@ -30,7 +30,7 @@ function cronhooks_run(&$argv, &$argc){
|
|||
if(function_exists('sys_getloadavg')) {
|
||||
$load = sys_getloadavg();
|
||||
if(intval($load[0]) > $maxsysload) {
|
||||
logger('system: load ' . $load . ' too high. Poller deferred to next scheduled run.');
|
||||
logger('system: load ' . $load[0] . ' too high. Cronhooks deferred to next scheduled run.');
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue