Code cleanup
This commit is contained in:
parent
b1a9666e43
commit
41e07a9ae2
1 changed files with 1 additions and 3 deletions
|
@ -54,7 +54,7 @@ class Cron
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
|
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
|
||||||
Hook::fork($a->queue['priority'], "cron");
|
Hook::fork($a->queue['priority'], 'cron');
|
||||||
|
|
||||||
// Poll contacts
|
// Poll contacts
|
||||||
Worker::add(PRIORITY_HIGH, 'PollContacts');
|
Worker::add(PRIORITY_HIGH, 'PollContacts');
|
||||||
|
@ -126,7 +126,5 @@ class Cron
|
||||||
Logger::notice('end');
|
Logger::notice('end');
|
||||||
|
|
||||||
DI::config()->set('system', 'last_cron', time());
|
DI::config()->set('system', 'last_cron', time());
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue