Browse Source

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
v1.3.x
Rapptz 5 years ago
parent
commit
403651a144
  1. 2
      discord/client.py
  2. 2
      discord/gateway.py
  3. 2
      discord/shard.py

2
discord/client.py

@ -549,7 +549,7 @@ class Client:
pass pass
if self.ws is not None and self.ws.open: if self.ws is not None and self.ws.open:
await self.ws.close() await self.ws.close(code=1000)
self._ready.clear() self._ready.clear()

2
discord/gateway.py

@ -543,7 +543,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol):
log.debug('Updating our voice state to %s.', payload) log.debug('Updating our voice state to %s.', payload)
await self.send_as_json(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: if self._keep_alive:
self._keep_alive.stop() self._keep_alive.stop()

2
discord/shard.py

@ -290,7 +290,7 @@ class AutoShardedClient(Client):
except Exception: except Exception:
pass 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: if to_close:
await asyncio.wait(to_close) await asyncio.wait(to_close)

Loading…
Cancel
Save