aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-04 05:55:11 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-04 05:55:11 +0000
commitfad2aae72b4d2db6ad105cba9ecdffc4855e6ab2 (patch)
treeb6f07a1b82a012930b8ad2926db9e3d87f68610f
parent56ade7513156b06b2d8b8df28bfdde2427e422cb (diff)
downloadrails-fad2aae72b4d2db6ad105cba9ecdffc4855e6ab2.tar.gz
rails-fad2aae72b4d2db6ad105cba9ecdffc4855e6ab2.tar.bz2
rails-fad2aae72b4d2db6ad105cba9ecdffc4855e6ab2.zip
Don't reap the spawner or reaper scripts either. Closes #2727.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2868 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--railties/lib/commands/process/reaper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/commands/process/reaper.rb b/railties/lib/commands/process/reaper.rb
index 1d74785911..d1aeee308f 100644
--- a/railties/lib/commands/process/reaper.rb
+++ b/railties/lib/commands/process/reaper.rb
@@ -32,7 +32,7 @@ class ProgramProcess
# ProgramProcess.find_by_keyword("basecamp")
def find_by_keyword(keyword)
process_lines_with_keyword(keyword).split("\n").collect { |line|
- next if line =~ /inq|ps -axww|grep|spawn-fcgi/
+ next if line =~ /inq|ps -axww|grep|spawn-fcgi|spawner|reaper/
pid, *command = line.split
new(pid, command.join(" "))
}.compact