X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=update_daemon2.php;h=af29ac18f86e0987f23cc365324cdaadadd63010;hb=642677d21aa5de78966e0c39a0962e60c8739ec3;hp=d7141c87815a0d8a784b0e099502363dbb7fcdcd;hpb=7aabaa09e13482291194c3c8d86a0e8421ea009c;p=tt-rss.git diff --git a/update_daemon2.php b/update_daemon2.php index d7141c87..af29ac18 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -1,50 +1,52 @@ -#!/usr/bin/php +#!/usr/bin/env php 30) { - update_daemon_common($link); - } else { - $count = update_feedbrowser_cache($link); - _debug("Finished, $count feeds processed."); - } + $my_pid = posix_getpid(); - _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)"); - - db_close($link); + passthru(PHP_EXECUTABLE . " update.php --daemon-loop $quiet $log --task $j --pidlock $my_pid"); - // We are in a fork. - // We wait a little before exiting to avoid to be faster than our parent process. sleep(1); - unlink(LOCK_DIRECTORY . "/$lock_filename"); - // We exit in order to avoid fork bombing. exit(0); } - - // We wait a little time before the next fork, in order to let the first fork - // mark the feeds it update : - sleep(1); } $last_checkpoint = time(); }