Extra debugging for get_first_relay
This commit is contained in:
parent
65697ce8f0
commit
e517d04095
|
@ -1,6 +1,6 @@
|
|||
import main
|
||||
from modules import chankeep
|
||||
|
||||
from util.logging.debug import debug
|
||||
|
||||
def get_first_relay(net):
|
||||
"""
|
||||
|
@ -11,13 +11,16 @@ def get_first_relay(net):
|
|||
"""
|
||||
cur_relay = 0
|
||||
max_relay = len(main.network[net].relays.keys()) + 1
|
||||
debug(f"get_first_relay() {net}: max_relay:{max_relay}")
|
||||
activeRelays = chankeep.getActiveRelays(net)
|
||||
debug(f"get_first_relay() {net}: activeRelays:{activeRelays}")
|
||||
while cur_relay != max_relay:
|
||||
cur_relay += 1
|
||||
if cur_relay not in activeRelays:
|
||||
continue
|
||||
name = net + str(cur_relay)
|
||||
if name in main.IRCPool.keys():
|
||||
debug(f"get_first_relay() {net}: found relay {name}")
|
||||
return main.IRCPool[name]
|
||||
return None
|
||||
|
||||
|
|
Loading…
Reference in New Issue