mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Don't eager load ActionController::Live
This module must be included into a controller before it can be used, which means it will be eager loaded along with the application.
This commit is contained in:
parent
9a6ab5e89e
commit
a39098dc85
1 changed files with 1 additions and 4 deletions
|
@ -18,10 +18,6 @@ module ActionController
|
|||
end
|
||||
|
||||
autoload_under "metal" do
|
||||
eager_autoload do
|
||||
autoload :Live
|
||||
end
|
||||
|
||||
autoload :ConditionalGet
|
||||
autoload :ContentSecurityPolicy
|
||||
autoload :Cookies
|
||||
|
@ -37,6 +33,7 @@ module ActionController
|
|||
autoload :BasicImplicitRender
|
||||
autoload :ImplicitRender
|
||||
autoload :Instrumentation
|
||||
autoload :Live
|
||||
autoload :Logging
|
||||
autoload :MimeResponds
|
||||
autoload :ParamsWrapper
|
||||
|
|
Loading…
Reference in a new issue