mirror of
https://github.com/friendica/friendica
synced 2025-04-28 01:10:12 +00:00
Renamed functions
This commit is contained in:
parent
33cb241ed3
commit
537da657cc
4 changed files with 10 additions and 10 deletions
|
@ -38,11 +38,11 @@ class Cron
|
|||
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
|
||||
Hook::fork($a->queue['priority'], "cron");
|
||||
|
||||
// run the process to discover global contacts in the background
|
||||
Worker::add(PRIORITY_LOW, "DiscoverPoCo");
|
||||
// run the process to update server directories in the background
|
||||
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
|
||||
|
||||
// run the process to update locally stored global contacts in the background
|
||||
Worker::add(PRIORITY_LOW, 'DiscoverContacts');
|
||||
Worker::add(PRIORITY_LOW, 'UpdateGContacts');
|
||||
|
||||
// Expire and remove user entries
|
||||
Worker::add(PRIORITY_MEDIUM, "CronJobs", "expire_and_remove_users");
|
||||
|
@ -73,7 +73,7 @@ class Cron
|
|||
// update nodeinfo data
|
||||
Worker::add(PRIORITY_LOW, "CronJobs", "nodeinfo");
|
||||
|
||||
Worker::add(PRIORITY_LOW, 'UpdateServers');
|
||||
Worker::add(PRIORITY_LOW, 'UpdateGServers');
|
||||
|
||||
Worker::add(PRIORITY_LOW, 'UpdateSuggestions');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue