1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #39441 from fatkodima/caching-delete-autoload

No need to extend ActionController::Caching by ActiveSupport::Autoload
This commit is contained in:
Ryuta Kamizono 2020-05-27 04:24:23 +09:00 committed by GitHub
commit b91906c53c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,6 @@ module ActionController
# config.action_controller.cache_store = :mem_cache_store, Memcached::Rails.new('localhost:11211') # config.action_controller.cache_store = :mem_cache_store, Memcached::Rails.new('localhost:11211')
# config.action_controller.cache_store = MyOwnStore.new('parameter') # config.action_controller.cache_store = MyOwnStore.new('parameter')
module Caching module Caching
extend ActiveSupport::Autoload
extend ActiveSupport::Concern extend ActiveSupport::Concern
included do included do