Skip to content

Commit 4bb8537

Browse files
committed
Fix: celluloid infinite reconnect loop.
1 parent b57e44a commit 4bb8537

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### 0.14.1 (Next)
22

3+
* [#254](https://github.com/slack-ruby/slack-ruby-client/issues/254): Fix: celluloid infinite reconnect loop - [@dblock](https://github.com/dblock).
34
* Your contribution here.
45

56
### 0.14.0 (2019/2/25)

lib/slack/real_time/concurrency/celluloid.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def write(data)
6969

7070
def start_async(client)
7171
@client = client
72-
Actor.new(future.run_client_loop)
7372
Actor.new(future.run_ping_loop)
73+
Actor.new(future.run_client_loop)
7474
end
7575

7676
def run_client_loop

0 commit comments

Comments
 (0)