]> git.mxchange.org Git - friendica.git/commitdiff
Don't fork a new worker
authorMichael <heluecht@pirati.ca>
Tue, 6 Jun 2017 11:59:38 +0000 (11:59 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 6 Jun 2017 11:59:38 +0000 (11:59 +0000)
include/queue.php

index b21bf676bae999e7f80e9a120f4f8de206853555..6b42cf31e05dedf4acc49c5ba1e65981e759a381 100644 (file)
@@ -27,7 +27,7 @@ function queue_run(&$argv, &$argc){
                logger('queue: start');
 
                // Handling the pubsubhubbub requests
-               proc_run(PRIORITY_HIGH,'include/pubsubpublish.php');
+               proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/pubsubpublish.php');
 
                $r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue`
                        INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
@@ -50,7 +50,7 @@ function queue_run(&$argv, &$argc){
                if (dbm::is_result($r)) {
                        foreach ($r as $q_item) {
                                logger('Call queue for id '.$q_item['id']);
-                               proc_run(PRIORITY_LOW, "include/queue.php", $q_item['id']);
+                               proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/queue.php", $q_item['id']);
                        }
                }
                return;