X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=pumpio%2Fpumpio_sync.php;h=834bc1e6db05d661cf7d01891697aba0d28d0813;hb=82e8e64d8832b588c4c7203896b46cd8e0ca3618;hp=346376fa00d6fde9d26e40f1e972441a7d4607cb;hpb=e5b0d810e2e04856892612aa294cb727bcd308b4;p=friendica-addons.git diff --git a/pumpio/pumpio_sync.php b/pumpio/pumpio_sync.php index 346376fa..834bc1e6 100644 --- a/pumpio/pumpio_sync.php +++ b/pumpio/pumpio_sync.php @@ -1,66 +1,18 @@ $maxsysload) { + if (intval($load[0]) > Config::get('system', 'maxloadavg', 50)) { logger('system: load ' . $load[0] . ' too high. Pumpio sync deferred to next scheduled run.'); return; } } - $lockpath = get_lockpath(); - if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'pumpio_sync'); - if($pidfile->is_already_running()) { - logger("Already running"); - if ($pidfile->running_time() > 9*60) { - $pidfile->kill(); - logger("killed stale process"); - // Calling a new instance - proc_run('php','addon/pumpio/pumpio_sync.php'); - } - exit; - } - } - pumpio_sync($a); } - -if (array_search(__file__,get_included_files())===0){ - pumpio_sync_run($_SERVER["argv"],$_SERVER["argc"]); - killme(); -} -?>