public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Switch FCGI handler over to Rack
josh (author)
Fri Nov 28 15:36:17 -0800 2008
commit  926844e869b747fa1e9474fd95f9b97fa04ae092
tree    26b2f872cac52e3f8a9c3c19eeccbb750eac774e
parent  119a41e21ddfe220d1d6e92102b65141a0e2299d
...
98
99
100
101
 
102
103
104
...
98
99
100
 
101
102
103
104
0
@@ -98,7 +98,7 @@ class RailsFCGIHandler
0
 
0
       with_signal_handler 'USR1' do
0
         begin
0
-          Dispatcher.dispatch(cgi)
0
+          ::Rack::Handler::FastCGI.serve(cgi, Dispatcher.new)
0
         rescue SignalException, SystemExit
0
           raise
0
         rescue Exception => error

Comments