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
This commit is contained in:
Rapptz
2020-04-04 01:42:08 -04:00
parent aea9c2aebf
commit 403651a144
3 changed files with 3 additions and 3 deletions

View File

@ -290,7 +290,7 @@ class AutoShardedClient(Client):
except Exception:
pass
to_close = [asyncio.ensure_future(shard.ws.close(), loop=self.loop) for shard in self.shards.values()]
to_close = [asyncio.ensure_future(shard.ws.close(code=1000), loop=self.loop) for shard in self.shards.values()]
if to_close:
await asyncio.wait(to_close)