]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Cron.php
version 2021.03-dev
[friendica.git] / src / Worker / Cron.php
index 3ce5fb4605a4aa505ccf5a4df72eff5ca2e9d6b3..1901766d3ac1d4d341f69322388c902ae8704b44 100644 (file)
@@ -55,13 +55,16 @@ 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, 'UpdateContacts');
+
+               // Update server information
+               Worker::add(PRIORITY_LOW, 'UpdateGServers');
 
                // run the process to update server directories in the background
                Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
@@ -103,8 +106,6 @@ class Cron
                        // update nodeinfo data
                        Worker::add(PRIORITY_LOW, 'NodeInfo');
 
-                       Worker::add(PRIORITY_LOW, 'UpdateGServers');
-
                        // Repair entries in the database
                        Worker::add(PRIORITY_LOW, 'RepairDatabase');
 
@@ -116,6 +117,10 @@ class Cron
 
                        Worker::add(PRIORITY_LOW, 'CleanItemUri');
 
+                       Worker::add(PRIORITY_LOW, 'RemoveUnusedContacts');
+
+                       Worker::add(PRIORITY_LOW, 'RemoveUnusedAvatars');
+
                        // check upstream version?
                        Worker::add(PRIORITY_LOW, 'CheckVersion');