From ec4962a14c35ff42d8bf0f7ca7f6795e01745e15 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 17 Dec 2019 23:34:49 -0500 Subject: [PATCH] Wait 5 seconds before IDENTIFYing with an invalidated session. --- discord/gateway.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord/gateway.py b/discord/gateway.py index 13ea85b7b..43bb890ab 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -396,6 +396,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol): self.sequence = None self.session_id = None log.info('Shard ID %s session has been invalidated.', self.shard_id) + await asyncio.sleep(5.0) await self.identify() return