aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable/subscription_adapter.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2016-01-22 11:13:12 +1030
committerMatthew Draper <matthew@trebex.net>2016-01-24 15:52:47 +1030
commitdccc15d4030f250f38987328b6201282c1ef34a5 (patch)
tree0ed4a4769529bc89de3030bc62c56a3d8947db55 /actioncable/lib/action_cable/subscription_adapter.rb
parent83d2c39d5eb8d82ba124b6725d08c8e90760c764 (diff)
downloadrails-dccc15d4030f250f38987328b6201282c1ef34a5.tar.gz
rails-dccc15d4030f250f38987328b6201282c1ef34a5.tar.bz2
rails-dccc15d4030f250f38987328b6201282c1ef34a5.zip
Split internal subscriber tracking from Postgres adapter
Diffstat (limited to 'actioncable/lib/action_cable/subscription_adapter.rb')
-rw-r--r--actioncable/lib/action_cable/subscription_adapter.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/subscription_adapter.rb b/actioncable/lib/action_cable/subscription_adapter.rb
index e770f4fb00..72e62f3daf 100644
--- a/actioncable/lib/action_cable/subscription_adapter.rb
+++ b/actioncable/lib/action_cable/subscription_adapter.rb
@@ -1,5 +1,8 @@
module ActionCable
module SubscriptionAdapter
- autoload :Base, 'action_cable/subscription_adapter/base'
+ extend ActiveSupport::Autoload
+
+ autoload :Base
+ autoload :SubscriberMap
end
end