summaryrefslogtreecommitdiff
path: root/update_daemon2.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-29 13:04:05 +0400
committerAndrew Dolgov <[email protected]>2013-03-29 13:04:05 +0400
commit61aa749938b74d70fca462c282955e5bf23dd627 (patch)
treea47ed9bb4fbfce5e2193e13745837288464ef54c /update_daemon2.php
parent30ac8d1f86bc4592e4fb38503b01de05f08c2aec (diff)
reduce next spawn idle messages
Diffstat (limited to 'update_daemon2.php')
-rwxr-xr-xupdate_daemon2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update_daemon2.php b/update_daemon2.php
index 4d226ef73..ca787de5b 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.");
}