diff options
author | francis <francis> | 2008-03-12 23:39:36 +0000 |
---|---|---|
committer | francis <francis> | 2008-03-12 23:39:36 +0000 |
commit | 583b0b8348449c1849c2e0af5196396c35bff0bf (patch) | |
tree | 3e3468993aae537c1ba212934e45f91af393596c | |
parent | 1eaf63df7b789d1ba73338582b4718a7cc6070e7 (diff) |
Link to the Rails bug tracker for this fix.
-rw-r--r-- | vendor/rails-2.0.2/railties/lib/fcgi_handler.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/rails-2.0.2/railties/lib/fcgi_handler.rb b/vendor/rails-2.0.2/railties/lib/fcgi_handler.rb index b76f9a163..5b5de9109 100644 --- a/vendor/rails-2.0.2/railties/lib/fcgi_handler.rb +++ b/vendor/rails-2.0.2/railties/lib/fcgi_handler.rb @@ -8,6 +8,7 @@ class RailsFCGIHandler 'HUP' => :reload, 'INT' => :exit_now, 'TERM' => :exit, # XXX was exit_now, changed by mySociety 2008-03-10 + # see also http://dev.rubyonrails.org/ticket/5399 - gah! 'USR1' => :exit, 'USR2' => :restart } |