]> git.mxchange.org Git - friendica.git/blobdiff - include/queue.php
Scrape: Always take the first alias
[friendica.git] / include / queue.php
index 157fc88d944a350b747a731ef0756f1117d432cb..183ce0f9cd610ff80789e86c6cfc81a91f2a32b4 100644 (file)
@@ -22,29 +22,15 @@ function queue_run(&$argv, &$argc){
        require_once("include/datetime.php");
        require_once('include/items.php');
        require_once('include/bbcode.php');
-       require_once('include/pidfile.php');
        require_once('include/socgraph.php');
 
        load_config('config');
        load_config('system');
 
        // Don't check this stuff if the function is called by the poller
-       if (App::callstack() != "poller_run") {
-               $lockpath = get_lockpath();
-               if ($lockpath != '') {
-                       $pidfile = new pidfile($lockpath, 'queue');
-                       if($pidfile->is_already_running()) {
-                               logger("queue: Already running");
-                               if ($pidfile->running_time() > 9*60) {
-                                       $pidfile->kill();
-                                       logger("queue: killed stale process");
-                                       // Calling a new instance
-                                       proc_run('php',"include/queue.php");
-                               }
-                               return;
-                       }
-               }
-       }
+       if (App::callstack() != "poller_run")
+               if (App::is_already_running('queue', 'include/queue.php', 540))
+                       return;
 
        $a->set_baseurl(get_config('system','url'));