From 99598820cf662ece0e2e97cc2ef07da3da6ea9f9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 20 Jan 2005 15:29:11 +0000 Subject: Fixed that FCGI can also display SyntaxErrors git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@470 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/dispatcher.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'railties/lib') diff --git a/railties/lib/dispatcher.rb b/railties/lib/dispatcher.rb index eed6db574f..2cbc42eaff 100644 --- a/railties/lib/dispatcher.rb +++ b/railties/lib/dispatcher.rb @@ -48,9 +48,13 @@ class Dispatcher private def reset_application(controller_name) - ActiveRecord::Base.reset_column_information_and_inheritable_attributes_for_all_subclasses - Dependencies.clear - remove_class_hierarchy(controller_class(controller_name), ActionController::Base) + begin + ActiveRecord::Base.reset_column_information_and_inheritable_attributes_for_all_subclasses + Dependencies.clear + remove_class_hierarchy(controller_class(controller_name), ActionController::Base) + rescue Object => exception + # Compilation errors are caught on the first run through + end end def controller_path(controller_name, module_name = nil) -- cgit v1.2.3