Browse Source

Continue connection loop with back-off if connecting fails >5 times.

pull/686/head
Rapptz 8 years ago
parent
commit
fe3b917564
  1. 7
      discord/voice_client.py

7
discord/voice_client.py

@ -245,7 +245,12 @@ class VoiceClient:
self._connected.clear()
yield from asyncio.sleep(retry, loop=self.loop)
yield from self.terminate_handshake()
yield from self.connect(reconnect=True)
try:
yield from self.connect(reconnect=True)
except asyncio.TimeoutError:
# at this point we've retried 5 times... let's continue the loop.
log.warning('Could not connect to voice... Retrying...')
continue
@asyncio.coroutine
def disconnect(self, *, force=False):

Loading…
Cancel
Save