Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I think Rails 3.1 is changing the way that errors are raised. Can anyone assist or confirm this? I'm attempting to create custom errors pages with Rails 3.1.0.rc1

unless config.consider_all_requests_local
    rescue_from Exception, :with => :render_error
    rescue_from ActiveRecord::RecordNotFound, :with => :render_not_found
    rescue_from ActionController::RoutingError, :with => :render_not_found
    rescue_from ActionController::UnknownController, :with => :render_not_found
    rescue_from ActionController::UnknownAction, :with => :render_not_found
end

^^ This doesn't work.

config.consider_all_requests_local       = true

That is in my development environment by default. I'm assuming Rails 3.1 removes the "action_controller" but I can't confirm this anywhere.

Thanks!

share|improve this question
What kind of errors? Just exceptions in general? – Matchu May 25 '11 at 4:00
It would be helpful if you can post some code and explain what specifically what unexpected behaviour you are seeing. – molf May 25 '11 at 9:46
you should accept the answer below. It works! – Matteo Alessani Sep 29 '11 at 7:59

2 Answers

up vote 18 down vote accepted

I'm assuming the following code appears in your ApplicationController?

unless config.consider_all_requests_local
  rescue_from Exception, :with => :render_error
  rescue_from ActiveRecord::RecordNotFound, :with => :render_not_found
  rescue_from ActionController::RoutingError, :with => :render_not_found
  rescue_from ActionController::UnknownController, :with => :render_not_found
  rescue_from ActionController::UnknownAction, :with => :render_not_found
end

If so, try replacing this line:

unless config.consider_all_requests_local

with this line (pre Rails 3 I think):

unless ActionController::Base.consider_all_requests_local

or this (post Rails 3):

unless Rails.application.config.consider_all_requests_local
share|improve this answer

I don't believe Matt's solution will catch routing errors in Rails 3.0/3.1.

Try putting the following in your application.rb:

# 404 catch all route
config.after_initialize do |app|
  app.routes.append{ match '*a', :to => 'application#render_not_found' } unless config.consider_all_requests_local
end

See: https://github.com/rails/rails/issues/671#issuecomment-1780159

Worked well for me!

share|improve this answer
Thanks for adding this! Learned about it a few weeks after posting my original answer here. :) – Matt Huggins Nov 5 '11 at 0:20
in general things that end up being the equiv. of if !Rails.env.production are dangerous... – Kevin Nov 8 '11 at 0:38
@Kevin - Where does this happen? Is this in reference to the use of consider_all_request_local? If so, I don't think you make a valid argument, as this is a setting defined on a per-environment basis. There are numerous settings configured per-environment, and this is just one of many. – Matt Huggins Nov 29 '12 at 17:01
It's been awhile, but I agree and withdraw my complaint :) – Kevin Nov 30 '12 at 18:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.