X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fworker.php;h=2995775db1b18e05a12ad099994d838f96e3ae75;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=930a807e38af57eb278d4330fe7350eb95b84715;hpb=669dafcf22e5c4baf5c2248c967226f915cd4403;p=friendica.git diff --git a/mod/worker.php b/mod/worker.php index 930a807e38..2995775db1 100644 --- a/mod/worker.php +++ b/mod/worker.php @@ -1,15 +1,17 @@ start_process(); + Worker::startProcess(); - logger("Front end worker started: ".getmypid()); + Logger::log("Front end worker started: ".getmypid()); Worker::callWorker(); - if ($r = Worker::workerProcess()) { + $passing_slow = false; + if ($r = Worker::workerProcess($passing_slow)) { // On most configurations this parameter wouldn't have any effect. // But since it doesn't destroy anything, we just try to get more execution time in any way. set_time_limit(0); - if (poller_claim_process($r[0])) { + $fields = ['executed' => DateTimeFormat::utcNow(), 'pid' => getmypid(), 'done' => false]; + $condition = ['id' => $r[0]["id"], 'pid' => 0]; + if (DBA::update('workerqueue', $fields, $condition)) { Worker::execute($r[0]); } } @@ -51,9 +56,9 @@ function worker_init($a){ Worker::unclaimProcess(); - $a->end_process(); + Worker::endProcess(); - logger("Front end worker ended: ".getmypid()); + Logger::log("Front end worker ended: ".getmypid()); - killme(); + exit(); }