aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib
diff options
context:
space:
mode:
authorDaniel Rhodes <rhodes.daniel@gmail.com>2016-03-01 02:48:15 +0100
committerDaniel Rhodes <rhodes.daniel@gmail.com>2016-03-01 02:48:15 +0100
commit53e163dc3fd2c77c7967534665e81e0ef40df580 (patch)
tree1b47cc71917969da7eeee627edcb166036549265 /actioncable/lib
parentf51cb7eef5be8e3496ea653fec04bedd6e5ec334 (diff)
downloadrails-53e163dc3fd2c77c7967534665e81e0ef40df580.tar.gz
rails-53e163dc3fd2c77c7967534665e81e0ef40df580.tar.bz2
rails-53e163dc3fd2c77c7967534665e81e0ef40df580.zip
Make ping into a message type
This change makes ping into a message type, which makes the whole protocol a lot more consistent. Also fixes hacks on the client side to make this all work.
Diffstat (limited to 'actioncable/lib')
-rw-r--r--actioncable/lib/action_cable.rb4
-rw-r--r--actioncable/lib/action_cable/connection/base.rb2
2 files changed, 2 insertions, 4 deletions
diff --git a/actioncable/lib/action_cable.rb b/actioncable/lib/action_cable.rb
index 48930ce948..a8e4d1cb25 100644
--- a/actioncable/lib/action_cable.rb
+++ b/actioncable/lib/action_cable.rb
@@ -29,11 +29,9 @@ module ActionCable
extend ActiveSupport::Autoload
INTERNAL = {
- identifiers: {
- ping: '_ping'.freeze
- },
message_types: {
welcome: 'welcome'.freeze,
+ ping: 'ping'.freeze,
confirmation: 'confirm_subscription'.freeze,
rejection: 'reject_subscription'.freeze
}
diff --git a/actioncable/lib/action_cable/connection/base.rb b/actioncable/lib/action_cable/connection/base.rb
index 7a9507fbd9..79253ef4ef 100644
--- a/actioncable/lib/action_cable/connection/base.rb
+++ b/actioncable/lib/action_cable/connection/base.rb
@@ -114,7 +114,7 @@ module ActionCable
end
def beat
- transmit ActiveSupport::JSON.encode(identifier: ActionCable::INTERNAL[:identifiers][:ping], message: Time.now.to_i)
+ transmit ActiveSupport::JSON.encode(type: ActionCable::INTERNAL[:message_types][:ping], message: Time.now.to_i)
end
def on_open # :nodoc: