X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=pumpio%2Fpumpio_sync.php;h=834bc1e6db05d661cf7d01891697aba0d28d0813;hb=40f99e48287c6cb44e3f1d3df3e8dabfb9d9c259;hp=e691a38789880be6238af1d023bc70e13d38bcc5;hpb=1cd8289a9223bef8ab77fe5169bd4132ef5d1086;p=friendica-addons.git diff --git a/pumpio/pumpio_sync.php b/pumpio/pumpio_sync.php index e691a387..834bc1e6 100644 --- a/pumpio/pumpio_sync.php +++ b/pumpio/pumpio_sync.php @@ -1,71 +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; } } - // This is deprecated with the worker - if (function_exists("get_lockpath")) { - $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(); -} -?>