More debugging for reg tests and getstr command
This commit is contained in:
@@ -12,16 +12,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}")
|
||||
# debug(f"get_first_relay() {net}: max_relay:{max_relay}")
|
||||
activeRelays = chankeep.getActiveRelays(net)
|
||||
debug(f"get_first_relay() {net}: activeRelays:{activeRelays}")
|
||||
# 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}")
|
||||
# debug(f"get_first_relay() {net}: found relay {name}")
|
||||
return main.IRCPool[name]
|
||||
return None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user