The cron interval is minutes - so we have to convert it into seconds

This commit is contained in:
Michael 2019-02-27 08:55:25 +00:00
parent 0ee1ea5f29
commit 5e440aa035

View file

@ -143,7 +143,7 @@ class Worker
} }
// Quit the worker once every cron interval // Quit the worker once every cron interval
if (time() > ($starttime + Config::get('system', 'cron_interval'))) { if (time() > ($starttime + (Config::get('system', 'cron_interval') * 60))) {
Logger::log('Process lifetime reached, respawning.', Logger::DEBUG); Logger::log('Process lifetime reached, respawning.', Logger::DEBUG);
self::spawnWorker(); self::spawnWorker();
return; return;