From a425bd91be1996c92a39a66e27eea7de02a34027 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 6 Mar 2018 00:15:26 -0500 Subject: Fix invalid close errors on websockets 4.x Fixes #1110 --- 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 7bd7c8de..4e100753 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -70,7 +70,7 @@ class KeepAliveHandler(threading.Thread): while not self._stop_ev.wait(self.interval): if self._last_ack + self.heartbeat_timeout < time.monotonic(): log.warn("Shard ID %s has stopped responding to the gateway. Closing and restarting." % self.shard_id) - coro = self.ws.close(1006) + coro = self.ws.close(4000) f = compat.run_coroutine_threadsafe(coro, loop=self.ws.loop) try: -- cgit v1.2.3