aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2020-04-04 01:42:08 -0400
committerRapptz <[email protected]>2020-04-04 01:42:08 -0400
commit403651a1440260cb46f42d68a82ee35e193a350d (patch)
treebf3a942558b13669f14fdc8e717299acdaf20992 /discord/client.py
parentFixed missing awaits in subclassed coros (diff)
downloaddiscord.py-403651a1440260cb46f42d68a82ee35e193a350d.tar.xz
discord.py-403651a1440260cb46f42d68a82ee35e193a350d.zip
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
Diffstat (limited to 'discord/client.py')
-rw-r--r--discord/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py
index e0f74192..3b68f39b 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -549,7 +549,7 @@ class Client:
pass
if self.ws is not None and self.ws.open:
- await self.ws.close()
+ await self.ws.close(code=1000)
self._ready.clear()