diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-09 12:39:31 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-09 12:39:31 -0800 |
commit | cd0f288fa725aebaf6cb9ae240c2b085000f6707 (patch) | |
tree | 2340429722a397ee6cfb88ef476b033071197fb5 /lib/spawningdaemon.php | |
parent | 4c7ac503d44b8ca74f68e03dd297916691e7f884 (diff) |
Configurable delay between queuedaemon.php spawns/respawns to help stagger out startups and subscriptions. Defaults to 1 second.
$config['queue']['spawndelay'] = 1;
Diffstat (limited to 'lib/spawningdaemon.php')
-rw-r--r-- | lib/spawningdaemon.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/spawningdaemon.php b/lib/spawningdaemon.php index b1961d688..862cbb4fa 100644 --- a/lib/spawningdaemon.php +++ b/lib/spawningdaemon.php @@ -83,6 +83,7 @@ abstract class SpawningDaemon extends Daemon $this->log(LOG_INFO, "Spawned thread $i as pid $pid"); $children[$i] = $pid; } + sleep(common_config('queue', 'spawndelay')); } $this->log(LOG_INFO, "Waiting for children to complete."); @@ -111,6 +112,7 @@ abstract class SpawningDaemon extends Daemon $this->log(LOG_INFO, "Respawned thread $i as pid $pid"); $children[$i] = $pid; } + sleep(common_config('queue', 'spawndelay')); } else { $this->log(LOG_INFO, "Thread $i pid $pid exited with status $exitCode; closing out thread."); } |