We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b57e44a + 4bb8537 commit eef0eb0Copy full SHA for eef0eb0
CHANGELOG.md
@@ -1,5 +1,6 @@
1
### 0.14.1 (Next)
2
3
+* [#254](https://github.com/slack-ruby/slack-ruby-client/issues/254): Fix: celluloid infinite reconnect loop - [@dblock](https://github.com/dblock).
4
* Your contribution here.
5
6
### 0.14.0 (2019/2/25)
lib/slack/real_time/concurrency/celluloid.rb
@@ -69,8 +69,8 @@ def write(data)
69
70
def start_async(client)
71
@client = client
72
- Actor.new(future.run_client_loop)
73
Actor.new(future.run_ping_loop)
+ Actor.new(future.run_client_loop)
74
end
75
76
def run_client_loop
0 commit comments