Ensure to add the cron forkhood worker task with medium priority
This commit is contained in:
parent
96d4ec0f53
commit
03af4062ce
|
@ -55,13 +55,13 @@ 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(PRIORITY_MEDIUM, 'cron');
|
||||||
|
|
||||||
// Poll contacts
|
// Poll contacts
|
||||||
Worker::add(PRIORITY_MEDIUM, 'PollContacts');
|
Worker::add(PRIORITY_MEDIUM, 'PollContacts');
|
||||||
|
|
||||||
// Update contact information
|
// Update contact information
|
||||||
Worker::add(PRIORITY_LOW, 'UpdatePublicContacts');
|
Worker::add(PRIORITY_LOW, 'UpdatePublicContacts');
|
||||||
|
|
||||||
// run the process to update server directories in the background
|
// run the process to update server directories in the background
|
||||||
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
|
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
|
||||||
|
|
Loading…
Reference in a new issue