mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Nuke the controllers after the dispatcher reload to avoid the superclass mismatch problem
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@323 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
612bb73fec
commit
b3739fca2c
1 changed files with 1 additions and 1 deletions
|
@ -41,9 +41,9 @@ class Dispatcher
|
|||
ActionController::Base.process_with_exception(request, response, exception).out
|
||||
ensure
|
||||
if Dependencies.mechanism == :load
|
||||
remove_class_hierarchy(controller_class(controller_name), ActionController::Base)
|
||||
ActiveRecord::Base.reset_column_information_and_inheritable_attributes_for_all_subclasses
|
||||
Dependencies.reload rescue nil # Ignore out of order reloading errors for Controllers
|
||||
remove_class_hierarchy(controller_class(controller_name), ActionController::Base)
|
||||
end
|
||||
|
||||
Breakpoint.deactivate_drb if defined?(BREAKPOINT_SERVER_PORT)
|
||||
|
|
Loading…
Reference in a new issue