Add more information to relay API return

This commit is contained in:
2022-08-13 23:36:39 +01:00
parent 2a3c9f80a3
commit a82355b660
3 changed files with 9 additions and 1 deletions

View File

@@ -32,7 +32,12 @@ def getActiveRelays(net):
for i in enabledRelays:
name = net + str(i)
if name in main.IRCPool.keys():
debug(f"getActiveRelays() {net}: {i} auth:{main.IRCPool[name].authenticated} conn:{main.IRCPool[name].isconnected}")
debug(
(
f"getActiveRelays() {net}: {i} auth:{main.IRCPool[name].authenticated} "
f"conn:{main.IRCPool[name].isconnected}"
)
)
if main.IRCPool[name].authenticated and main.IRCPool[name].isconnected:
activeRelays.append(i)
debug(f"getActiveRelays() {net}: {activeRelays}")

View File

@@ -2,6 +2,7 @@ import main
from modules import chankeep
from utils.logging.debug import debug
def get_first_relay(net):
"""
Get the first relay in the network.