Remove hardcoded path to reaper script in script/server.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3638 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-02-22 22:43:43 +00:00
parent c7d6d68f91
commit 5452383174
2 changed files with 4 additions and 2 deletions

@ -1,5 +1,7 @@
*SVN*
* Remove hardcoded path to reaper script in script/server [Jeremy Kemper]
* Update script.aculo.us to V1.5.3 [Thomas Fuchs]
* Added SIGTRAP signal handler to RailsFCGIHandler that'll force the process into a breakpoint after the next request. This breakpoint can then be caught with script/breakpointer and give you access to the Ruby image inside that process. Useful for debugging memory leaks among other things [DHH]

@ -67,7 +67,7 @@
puts 'Exiting'
# Ensure FCGI processes are reaped
path_to_ruby = "#{Config::CONFIG['bindir']}/#{Config::CONFIG['ruby_install_name']}"
`#{path_to_ruby} #{RAILS_ROOT}/script/process/reaper -a kill`
ARGV.replace ['-a', 'kill']
require 'commands/process/reaper'
end
end