diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2015-04-06 15:43:23 -0500 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2015-04-06 15:43:23 -0500 |
commit | fb797ad1f1c3b0d96968c5feef783a2b8fe07eed (patch) | |
tree | 42cd6bceb60c19c17f9d57a1f935cee89c9793fe /lib/action_cable/connection | |
parent | 8c4c782c78b45d94e97ee9a26a05c44cae7cd428 (diff) | |
download | rails-fb797ad1f1c3b0d96968c5feef783a2b8fe07eed.tar.gz rails-fb797ad1f1c3b0d96968c5feef783a2b8fe07eed.tar.bz2 rails-fb797ad1f1c3b0d96968c5feef783a2b8fe07eed.zip |
Fix an error message
Diffstat (limited to 'lib/action_cable/connection')
-rw-r--r-- | lib/action_cable/connection/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/connection/base.rb b/lib/action_cable/connection/base.rb index ea5d52e99c..4ad1e7d065 100644 --- a/lib/action_cable/connection/base.rb +++ b/lib/action_cable/connection/base.rb @@ -119,7 +119,7 @@ module ActionCable if @subscriptions[message['identifier']] @subscriptions[message['identifier']].receive_data(ActiveSupport::JSON.decode message['data']) else - logger.error "[ActionCable] Unable to process message because no subscription found (#{message.inspect})" + logger.error "[ActionCable] Unable to process message because no subscription was found (#{message.inspect})" end rescue Exception => e logger.error "[ActionCable] Could not process message (#{data.inspect})" |