aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2017-01-13 15:58:38 -0800
committerGitHub <noreply@github.com>2017-01-13 15:58:38 -0800
commit4bc02eda2df7d124a6ff7f3aefd59fc527d599e5 (patch)
tree42508a66cbdfd38a55af72b87fed548d31b92f1c
parentff9999babf00dce6491a9bbf830abf4bc4ff9f9d (diff)
parent39c739161dbba575f2642d7046beaeb84ea7913c (diff)
downloadrails-4bc02eda2df7d124a6ff7f3aefd59fc527d599e5.tar.gz
rails-4bc02eda2df7d124a6ff7f3aefd59fc527d599e5.tar.bz2
rails-4bc02eda2df7d124a6ff7f3aefd59fc527d599e5.zip
Merge pull request #27677 from j3ck/master
Fix missing bracket.
-rw-r--r--actioncable/lib/action_cable/connection/subscriptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/connection/subscriptions.rb b/actioncable/lib/action_cable/connection/subscriptions.rb
index abf42c99d5..44bce1e195 100644
--- a/actioncable/lib/action_cable/connection/subscriptions.rb
+++ b/actioncable/lib/action_cable/connection/subscriptions.rb
@@ -19,7 +19,7 @@ module ActionCable
logger.error "Received unrecognized command in #{data.inspect}"
end
rescue Exception => e
- logger.error "Could not execute command from #{data.inspect}) [#{e.class} - #{e.message}]: #{e.backtrace.first(5).join(" | ")}"
+ logger.error "Could not execute command from (#{data.inspect}) [#{e.class} - #{e.message}]: #{e.backtrace.first(5).join(" | ")}"
end
def add(data)