From 403651a1440260cb46f42d68a82ee35e193a350d Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 4 Apr 2020 01:42:08 -0400 Subject: Change default close code to 4000 instead of 1000. This prevents our sessions from being invalidated by Discord which caused a lot of failures when resuming. This caused an unnecessary amount of IDENTIFYs to happen depending on the circumstances. Closes #2631 See also discord/discord-api-docs#1472 --- discord/gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/gateway.py') diff --git a/discord/gateway.py b/discord/gateway.py index 3561033b..0e90c5f6 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -543,7 +543,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol): log.debug('Updating our voice state to %s.', payload) await self.send_as_json(payload) - async def close(self, code=1000, reason=''): + async def close(self, code=4000, reason=''): if self._keep_alive: self._keep_alive.stop() -- cgit v1.2.3