Browse Source

Ignore HEARTBEAT_ACK for now to disable the noisy logging.

pull/258/head
Rapptz 9 years ago
parent
commit
e600abbbab
  1. 3
      discord/gateway.py

3
discord/gateway.py

@ -300,6 +300,9 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol):
yield from self.close()
raise ReconnectWebSocket()
if op == self.HEARTBEAT_ACK:
return # disable noisy logging for now
if op == self.HELLO:
interval = data['heartbeat_interval'] / 1000.0
self._keep_alive = KeepAliveHandler(ws=self, interval=interval)

Loading…
Cancel
Save