]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Worker.php
Issue 11309: Check if a post is wanted
[friendica.git] / src / Core / Worker.php
index 3cf47b5364f41a54299c5954d816806985a85dd7..5c23d64456cc873feef2220194314b381d1ac3cb 100644 (file)
@@ -754,7 +754,7 @@ class Worker
                                        }
 
                                        $stamp = (float)microtime(true);
-                                       $jobs = DBA::count('workerqueue', ["`done` AND `executed` > UTC_TIMESTAMP() - INTERVAL ? MINUTE", $interval]);
+                                       $jobs = DBA::count('workerqueue', ["`done` AND `executed` > ?", DateTimeFormat::utc('now - ' . $interval . ' minute')]);
                                        self::$db_duration += (microtime(true) - $stamp);
                                        self::$db_duration_stat += (microtime(true) - $stamp);
                                        $jobs_per_minute[$interval] = number_format($jobs / $interval, 0);
@@ -1378,8 +1378,9 @@ class Worker
         * Defers the current worker entry
         *
         * @return boolean had the entry been deferred?
+        * @throws \Exception
         */
-       public static function defer()
+       public static function defer(): bool
        {
                $queue = DI::app()->getQueue();
 
@@ -1387,7 +1388,6 @@ class Worker
                        return false;
                }
 
-               $retrial = $queue['retrial'];
                $id = $queue['id'];
                $priority = $queue['priority'];