mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
eb0864ac65
commit
839f4d5a30
1 changed files with 6 additions and 6 deletions
|
@ -76,13 +76,13 @@ def check(timeout):
|
||||||
fail=False
|
fail=False
|
||||||
for ip in nodes:
|
for ip in nodes:
|
||||||
print("Contacting {}...".format(ip),end='')
|
print("Contacting {}...".format(ip),end='')
|
||||||
response = os.system("ping -c 1 -W " + str(timeout)+ " " + ip + " &>/dev/null")
|
try:
|
||||||
if response == 0:
|
subprocess.run(["ping", "-c", "1", "-W", str(timeout), ip],capture_output=True,check=True)
|
||||||
print("")
|
nodes.append(ip)
|
||||||
else:
|
print()
|
||||||
|
except:
|
||||||
fail=True
|
fail=True
|
||||||
print("=> Not responding!!")
|
print("=> Not responding!!")
|
||||||
|
|
||||||
if not fail:
|
if not fail:
|
||||||
print("Success: All nodes are reachable")
|
print("Success: All nodes are reachable")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue