Browse Source

feature - add ability to control gateway max reconnects vi config

feature/docs
Andrei 8 years ago
parent
commit
a498f08217
  1. 5
      disco/client.py
  2. 8
      disco/gateway/client.py

5
disco/client.py

@ -26,6 +26,8 @@ class ClientConfig(Config):
The shard ID for the current client instance.
shard_count : int
The total count of shards running.
max_reconnects : int
The maximum number of connection retries to make before giving up (0 = never give up).
manhole_enable : bool
Whether to enable the manhole (e.g. console backdoor server) utility.
manhole_bind : tuple(str, int)
@ -39,6 +41,7 @@ class ClientConfig(Config):
token = ""
shard_id = 0
shard_count = 1
max_reconnects = 5
manhole_enable = False
manhole_bind = ('127.0.0.1', 8484)
@ -86,7 +89,7 @@ class Client(LoggingClass):
self.packets = Emitter(gevent.spawn)
self.api = APIClient(self.config.token, self)
self.gw = GatewayClient(self, self.config.encoder)
self.gw = GatewayClient(self, self.config.max_reconnects, self.config.encoder)
self.state = State(self, StateConfig(self.config.get('state', {})))
if self.config.manhole_enable:

8
disco/gateway/client.py

@ -15,11 +15,11 @@ TEN_MEGABYTES = 10490000
class GatewayClient(LoggingClass):
GATEWAY_VERSION = 6
MAX_RECONNECTS = 5
def __init__(self, client, encoder='json', ipc=None):
def __init__(self, client, max_reconnects=5, encoder='json', ipc=None):
super(GatewayClient, self).__init__()
self.client = client
self.max_reconnects = max_reconnects
self.encoder = ENCODERS[encoder]
self.events = client.events
@ -192,8 +192,8 @@ class GatewayClient(LoggingClass):
self.reconnects += 1
self.log.info('WS Closed: [%s] %s (%s)', code, reason, self.reconnects)
if self.MAX_RECONNECTS and self.reconnects > self.MAX_RECONNECTS:
raise Exception('Failed to reconnect after {} attempts, giving up'.format(self.MAX_RECONNECTS))
if self.max_reconnects and self.reconnects > self.max_reconnects:
raise Exception('Failed to reconnect after {} attempts, giving up'.format(self.max_reconnects))
# Don't resume for these error codes
if code and 4000 <= code <= 4010:

Loading…
Cancel
Save