From: Andrew Dolgov Date: Fri, 29 Mar 2013 09:04:05 +0000 (+0400) Subject: reduce next spawn idle messages X-Git-Tag: 1.7.6~171 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=61aa749938b74d70fca462c282955e5bf23dd627;p=tt-rss.git reduce next spawn idle messages --- diff --git a/update_daemon2.php b/update_daemon2.php index 4d226ef7..ca787de5 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -186,7 +186,7 @@ // respect the spawn interval $next_spawn = $last_checkpoint + $spawn_interval - time(); - if ($next_spawn % 10 == 0) { + if ($next_spawn % 60 == 0) { $running_jobs = count($children); _debug("[MASTER] active jobs: $running_jobs, next spawn at $next_spawn sec."); }