Minor changes

This commit is contained in:
Loic Guegan 2023-10-26 20:19:08 +02:00
parent 9a3523d659
commit 01fd3c2d66

View file

@ -19,6 +19,14 @@ def info():
print("Node count: ",end="")
print("NA") if nodes==None else print(len(nodes))
# Groups
print("Node groups: ",end="")
if len(CONF["cluster"]["groups"]) > 0:
print(",".join(CONF["cluster"]["groups"].keys()))
else:
print("NA")
# Cache
print("Last node scan: ",end="")
if cache!=None and "last_scan" in CONF["cache"]: