We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012d30e commit 75d9364Copy full SHA for 75d9364
1 file changed
cloudbot/bot.py
@@ -221,7 +221,7 @@ def _init_routine(self):
221
self.observer.start()
222
223
# Connect to servers
224
- yield from asyncio.gather(*[conn.connect() for conn in self.connections.values()], loop=self.loop)
+ yield from asyncio.gather(*[conn.try_connect() for conn in self.connections.values()], loop=self.loop)
225
226
# Activate web interface.
227
if self.config.get("web", {}).get("enabled", False) and web_installed:
0 commit comments