From 03af4062cedd55b55c40a6965120af9007bdf63f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2020 17:41:20 +0100 Subject: [PATCH] Ensure to add the cron forkhood worker task with medium priority --- src/Worker/Cron.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index 3ce5fb4605..270387d355 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -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');