]> git.mxchange.org Git - friendica.git/commitdiff
Ensure to add the cron forkhood worker task with medium priority
authorMichael Vogel <icarus@dabo.de>
Sun, 29 Nov 2020 16:41:20 +0000 (17:41 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 29 Nov 2020 16:41:20 +0000 (17:41 +0100)
src/Worker/Cron.php

index 3ce5fb4605a4aa505ccf5a4df72eff5ca2e9d6b3..270387d3551e8c983dca9b2eb07db477df4b7198 100644 (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');