From 18af4dbcc14eb7765bc021f94a444cc394864c26 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 12 Apr 2009 23:41:30 -0700 Subject: old_rails: try harder to ensure valid responses Hopefully the world will just move to Rack faster so we have less things to worry about. --- lib/unicorn/app/old_rails.rb | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'lib/unicorn/app') diff --git a/lib/unicorn/app/old_rails.rb b/lib/unicorn/app/old_rails.rb index bb9577a..4b74666 100644 --- a/lib/unicorn/app/old_rails.rb +++ b/lib/unicorn/app/old_rails.rb @@ -13,9 +13,15 @@ class Unicorn::App::OldRails def call(env) cgi = Unicorn::CGIWrapper.new(env) - Dispatcher.dispatch(cgi, - ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS, - cgi.body) + begin + Dispatcher.dispatch(cgi, + ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS, + cgi.body) + rescue Object => e + err = env['rack.errors'] + out.write("#{e} #{e.message}\n") + e.backtrace.each { |line| out.write("#{line}\n") } + end cgi.out # finalize the response cgi.rack_response end -- cgit v1.2.3-24-ge0c7