mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
classes: make pingfreq consistent, bump timeouts
This commit is contained in:
parent
88f55fe493
commit
eeca570cc4
@ -47,8 +47,8 @@ class Irc():
|
||||
self.bot_clients = {}
|
||||
self.protoname = proto.__name__
|
||||
self.proto = proto.Class(self)
|
||||
self.pingfreq = self.serverdata.get('pingfreq') or 90
|
||||
self.pingtimeout = self.pingfreq * 2
|
||||
self.pingfreq = self.serverdata.get('pingfreq') or 180
|
||||
self.pingtimeout = self.pingfreq * 3
|
||||
|
||||
self.connected = threading.Event()
|
||||
self.aborted = threading.Event()
|
||||
@ -98,7 +98,7 @@ class Irc():
|
||||
self.sid = self.serverdata["sid"]
|
||||
self.botdata = self.conf['bot']
|
||||
self.pingfreq = self.serverdata.get('pingfreq') or 180
|
||||
self.pingtimeout = self.pingfreq * 2
|
||||
self.pingtimeout = self.pingfreq * 3
|
||||
|
||||
self.connected.clear()
|
||||
self.aborted.clear()
|
||||
|
Loading…
Reference in New Issue
Block a user