Browse Source

Wait 5 seconds before attempting to RESUME during INVALIDATE_SESSION.

pull/546/head
Rapptz 8 years ago
parent
commit
e445fa9335
  1. 1
      discord/gateway.py

1
discord/gateway.py

@ -337,6 +337,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol):
if op == self.INVALIDATE_SESSION:
if data == True:
yield from asyncio.sleep(5.0, loop=self.loop)
yield from self.close()
raise ResumeWebSocket(self.shard_id)

Loading…
Cancel
Save