aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/dispatcher.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/dispatcher.rb b/actionpack/lib/action_controller/dispatcher.rb
index 64553fb25d..f20d9cc40f 100644
--- a/actionpack/lib/action_controller/dispatcher.rb
+++ b/actionpack/lib/action_controller/dispatcher.rb
@@ -10,10 +10,6 @@ module ActionController
# Development mode callbacks
before_dispatch :reload_application
after_dispatch :cleanup_application
-
- to_prepare :reload_view_path_cache do
- ActionView::TemplateFinder.reload! unless ActionView::Base.cache_template_loading
- end
end
# Common callbacks
@@ -25,6 +21,10 @@ module ActionController
end
end
+ to_prepare :reload_view_path_cache do
+ ActionView::TemplateFinder.reload!
+ end
+
if defined?(ActiveRecord)
before_dispatch { ActiveRecord::Base.verify_active_connections! }
to_prepare(:activerecord_instantiate_observers) { ActiveRecord::Base.instantiate_observers }