]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Queue.php
Fix to OStatus delivery to be not so blocking to other tasks
[friendica.git] / src / Worker / Queue.php
index 345da39abbb6b3617dadda2bc2cdad28996fb362..20ade6dfaecd8a35430b20d4d8981d4ffc8c6536 100644 (file)
@@ -34,7 +34,7 @@ class Queue
                        logger('filling queue jobs - start');
 
                        // Handling the pubsubhubbub requests
-                       Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], 'PubSubPublish');
+                       Worker::add(['priority' => PRIORITY_LOW, 'dont_fork' => true], 'PubSubPublish');
 
                        $r = dba::inArray(dba::p("SELECT `id` FROM `queue` WHERE `next` < UTC_TIMESTAMP() ORDER BY `batch`, `cid`"));