Browse Source

reduce next spawn idle messages

Andrew Dolgov 11 years ago
parent
commit
61aa749938
1 changed files with 1 additions and 1 deletions
  1. 1 1
      update_daemon2.php

+ 1 - 1
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.");
 		}