lock per-feed update processes based on feed ID to reduce possibilty

of concurrent updates
This commit is contained in:
Andrew Dolgov 2020-09-27 16:01:39 +03:00
parent 528b387563
commit 0761533d0a
1 changed files with 1 additions and 2 deletions

View File

@ -145,13 +145,12 @@ class RSSUtils {
array_push($batch_owners, $tline["owner_uid"]);
$fstarted = microtime(true);
$my_pid = posix_getpid();
$quiet = (isset($options["quiet"])) ? "--quiet" : "";
$log = function_exists("flock") && isset($options['log']) ? '--log '.$options['log'] : '';
$log_level = isset($options['log-level']) ? '--log-level '.$options['log-level'] : '';
passthru(PHP_EXECUTABLE . " update.php --update-feed " . $tline["id"] . " --pidlock $my_pid $quiet $log $log_level");
passthru(PHP_EXECUTABLE . " update.php --update-feed " . $tline["id"] . " --pidlock feed-" . $tline["id"] . " $quiet $log $log_level");
/* try {
self::update_rss_feed($tline["id"], true, false);