X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fqueuemanager.php;h=72eff6e463182d55404620250cdf79464cd50d46;hb=48bb784400dd9569739ac68e7c87a7db427ef018;hp=576c7c0af83aab9f3e4201027e9ddb92fc0d576a;hpb=20d6a7caed6636c28cc7b95c584549691dff4388;p=quix0rs-gnu-social.git diff --git a/lib/queuemanager.php b/lib/queuemanager.php index 576c7c0af8..72eff6e463 100644 --- a/lib/queuemanager.php +++ b/lib/queuemanager.php @@ -233,12 +233,18 @@ abstract class QueueManager extends IoManager if (Event::handle('StartInitializeQueueManager', array($this))) { $this->connect('distrib', 'DistribQueueHandler'); - $this->connect('omb', 'OmbQueueHandler'); $this->connect('ping', 'PingQueueHandler'); if (common_config('sms', 'enabled')) { $this->connect('sms', 'SmsQueueHandler'); } + // Background user management tasks... + $this->connect('deluser', 'DelUserQueueHandler'); + $this->connect('feedimp', 'FeedImporter'); + $this->connect('actimp', 'ActivityImporter'); + $this->connect('acctmove', 'AccountMover'); + $this->connect('actmove', 'ActivityMover'); + // For compat with old plugins not registering their own handlers. $this->connect('plugin', 'PluginQueueHandler'); }