mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-05 11:36:25 +02:00
Minor changes
This commit is contained in:
parent
cad597868f
commit
37ac5a14dd
1 changed files with 4 additions and 3 deletions
|
@ -26,9 +26,10 @@ def info():
|
|||
print(", ", end="")
|
||||
pattern = re.compile(CONF["cluster"]["groups"][group])
|
||||
count=0
|
||||
for ip in nodes:
|
||||
if pattern.match(ip):
|
||||
count=count+1
|
||||
if not nodes == None:
|
||||
for ip in nodes:
|
||||
if pattern.match(ip):
|
||||
count=count+1
|
||||
print("{}({})".format(group,count),end="")
|
||||
print()
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue