File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
lib/slack/real_time/concurrency Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11# This configuration was generated by
22# `rubocop --auto-gen-config`
3- # on 2019-07-21 10:11:39 -0400 using RuboCop version 0.61.1.
3+ # on 2019-07-21 18:39:19 -0400 using RuboCop version 0.61.1.
44# The point is for the user to remove these configuration records
55# one by one as the offenses are removed from the code base.
66# Note that changes in the inspected code, or installation of new
@@ -13,10 +13,11 @@ Lint/AssignmentInCondition:
1313 - ' lib/slack/real_time/concurrency/async.rb'
1414 - ' lib/slack/real_time/socket.rb'
1515
16- # Offense count: 4
16+ # Offense count: 5
1717Lint/HandleExceptions :
1818 Exclude :
1919 - ' lib/slack-ruby-client.rb'
20+ - ' lib/slack/real_time/concurrency/async.rb'
2021 - ' spec/slack/real_time/concurrency/celluloid_spec.rb'
2122 - ' spec/slack/real_time/concurrency/eventmachine_spec.rb'
2223
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ def start_reactor(client)
4949 client . run_loop
5050 rescue ::Async ::Wrapper ::Cancelled => e
5151 # Will get restarted by ping worker.
52- client . logger . warn ( subtask . to_s ) { e . message }
52+ rescue StandardError => e
53+ client . logger . error ( subtask . to_s ) { e . message }
5354 end
5455 end
5556
You can’t perform that action at this time.
0 commit comments