From ddf6910941977a03108f437956204580a3d0450a Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Wed, 2 Nov 2005 01:23:34 +0000 Subject: ensure close_session in AC::Base#process git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2842 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index fa047e18c2..7c2f7239fa 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -363,9 +363,9 @@ module ActionController #:nodoc: log_processing if logger send(method, *arguments) - close_session - @response + ensure + close_session end # Returns a URL that has been rewritten according to the options hash and the defined Routes. -- cgit v1.2.3