diff options
author | José Valim <jose.valim@gmail.com> | 2011-12-16 10:38:17 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-12-16 10:45:59 +0100 |
commit | 654df86b7b022085785a64c431c45d8450d5e987 (patch) | |
tree | 59daaf75560cd1e128cf67a83afd7f218ba9dccd /actionpack/lib/action_controller | |
parent | 192e55c38ed9b48672b9e216c9805b782b835d78 (diff) | |
download | rails-654df86b7b022085785a64c431c45d8450d5e987.tar.gz rails-654df86b7b022085785a64c431c45d8450d5e987.tar.bz2 rails-654df86b7b022085785a64c431c45d8450d5e987.zip |
Show detailed exceptions no longer returns true if the request is local in production.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/rescue.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/rescue.rb b/actionpack/lib/action_controller/metal/rescue.rb index c4b056ebc0..68cc9a9c9b 100644 --- a/actionpack/lib/action_controller/metal/rescue.rb +++ b/actionpack/lib/action_controller/metal/rescue.rb @@ -1,4 +1,7 @@ module ActionController #:nodoc: + # This module is responsible to provide `rescue_from` helpers + # to controllers and configure when detailed exceptions must be + # shown. module Rescue extend ActiveSupport::Concern include ActiveSupport::Rescuable @@ -12,8 +15,13 @@ module ActionController #:nodoc: super(exception) end + # Override this method if you want to customize when detailed + # exceptions must be shown. This method is only called when + # consider_all_requests_local is false. By default, it returns + # false, but someone may set it to `request.local?` so local + # requests in production still shows the detailed exception pages. def show_detailed_exceptions? - request.local? + false end private |