]> git.mxchange.org Git - friendica.git/commitdiff
opps, re-introduced this out-dated code by mistake
authorRoland Häder <roland@mxchange.org>
Tue, 16 May 2017 18:13:08 +0000 (20:13 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 16 May 2017 18:13:08 +0000 (20:13 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
include/queue.php

index 97b8605cbeaeaee2d6e4ae064ce778fdfa3233e2..dbed4604735e7eaedf0b672f665c4e7d6ac8be4b 100644 (file)
@@ -29,28 +29,10 @@ function queue_run(&$argv, &$argc){
                // Handling the pubsubhubbub requests
                proc_run(PRIORITY_HIGH,'include/pubsubpublish.php');
 
-               $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
-
-               // If we are using the worker we don't need a delivery interval
-               /// @TODO To much get_config() here
-               if (get_config("system", "worker")) {
-                       $interval = false;
-               }
-
-               $r = q("select * from deliverq where 1");
-               if ($r) {
-                       foreach ($r as $rr) {
-                               logger('queue: deliverq');
-                               proc_run(PRIORITY_HIGH,'include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']);
-                               if ($interval) {
-                                       time_sleep_until(microtime(true) + (float) $interval);
-                               }
-                       }
-               }
-
                $r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue`
                        INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
                        WHERE `queue`.`created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
+
                if (dbm::is_result($r)) {
                        foreach ($r as $rr) {
                                logger('Removing expired queue item for ' . $rr['name'] . ', uid=' . $rr['uid']);