From a82838997f172909ffc98ab3cc7f0e74b2297f21 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sun, 23 Jul 2023 00:02:40 -0400 Subject: [PATCH] Updated ping out timer --- bots/tailbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/tailbot.py b/bots/tailbot.py index 37729dc..59d8abd 100644 --- a/bots/tailbot.py +++ b/bots/tailbot.py @@ -89,7 +89,7 @@ class Bot(): 'family' : 10 if connection.ipv6 else 2, 'local_addr' : connection.vhost } - self.reader, self.writer = await asyncio.wait_for(asyncio.open_connection(**options), 15) + self.reader, self.writer = await asyncio.wait_for(asyncio.open_connection(**options), 300) await self.raw(f'USER {identity.username} 0 * :{identity.realname}') await self.raw('NICK ' + identity.nickname) except Exception as ex: