Merge pull request #9607 from annando/cron-priority

Ensure to add the cron forkhood worker task with medium priority
This commit is contained in:
Hypolite Petovan 2020-11-29 12:49:02 -05:00 committed by GitHub
commit ea2923be67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -55,13 +55,13 @@ class Cron
}
// 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
Worker::add(PRIORITY_MEDIUM, 'PollContacts');
// Update contact information
Worker::add(PRIORITY_LOW, 'UpdatePublicContacts');
Worker::add(PRIORITY_LOW, 'UpdatePublicContacts');
// run the process to update server directories in the background
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');