提交 2e296c8e 编写于 作者: G Guillermo Iguaran

Merge pull request #12365 from jbaudanza/reorder

Move Rack::Cache after ActionDispatch::Static in the middleware stack
...@@ -11,11 +11,6 @@ def initialize(app, config, paths) ...@@ -11,11 +11,6 @@ def initialize(app, config, paths)
def build_stack def build_stack
ActionDispatch::MiddlewareStack.new.tap do |middleware| ActionDispatch::MiddlewareStack.new.tap do |middleware|
if rack_cache = load_rack_cache
require "action_dispatch/http/rack_cache"
middleware.use ::Rack::Cache, rack_cache
end
if config.force_ssl if config.force_ssl
middleware.use ::ActionDispatch::SSL, config.ssl_options middleware.use ::ActionDispatch::SSL, config.ssl_options
end end
...@@ -26,6 +21,11 @@ def build_stack ...@@ -26,6 +21,11 @@ def build_stack
middleware.use ::ActionDispatch::Static, paths["public"].first, config.static_cache_control middleware.use ::ActionDispatch::Static, paths["public"].first, config.static_cache_control
end end
if rack_cache = load_rack_cache
require "action_dispatch/http/rack_cache"
middleware.use ::Rack::Cache, rack_cache
end
middleware.use ::Rack::Lock unless allow_concurrency? middleware.use ::Rack::Lock unless allow_concurrency?
middleware.use ::Rack::Runtime middleware.use ::Rack::Runtime
middleware.use ::Rack::MethodOverride middleware.use ::Rack::MethodOverride
......
...@@ -61,7 +61,7 @@ def app ...@@ -61,7 +61,7 @@ def app
boot! boot!
assert_equal "Rack::Cache", middleware.first assert middleware.include?("Rack::Cache")
end end
test "ActiveRecord::Migration::CheckPending is present when active_record.migration_error is set to :page_load" do test "ActiveRecord::Migration::CheckPending is present when active_record.migration_error is set to :page_load" do
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册