aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/server.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2015-10-12 12:33:48 -0500
committerPratik Naik <pratiknaik@gmail.com>2015-10-12 12:33:48 -0500
commitd222f7de572f28fc2fa185e9f21cac6f7e6c84f0 (patch)
treebc3b9edb6e85119f172c1367fd96826367b1948d /lib/action_cable/server.rb
parentaa3c1154edfacecbbf676af4d8728d8674d97cf4 (diff)
downloadrails-d222f7de572f28fc2fa185e9f21cac6f7e6c84f0.tar.gz
rails-d222f7de572f28fc2fa185e9f21cac6f7e6c84f0.tar.bz2
rails-d222f7de572f28fc2fa185e9f21cac6f7e6c84f0.zip
Make sure active record queries are logged with the current connection tags
Diffstat (limited to 'lib/action_cable/server.rb')
-rw-r--r--lib/action_cable/server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/server.rb b/lib/action_cable/server.rb
index 919ebd94de..2278509341 100644
--- a/lib/action_cable/server.rb
+++ b/lib/action_cable/server.rb
@@ -6,6 +6,6 @@ module ActionCable
autoload :Configuration, 'action_cable/server/configuration'
autoload :Worker, 'action_cable/server/worker'
- autoload :ClearDatabaseConnections, 'action_cable/server/worker/clear_database_connections'
+ autoload :ActiveRecordConnectionManagement, 'action_cable/server/worker/active_record_connection_management'
end
end