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
eb0864ac65
commit
839f4d5a30
1 changed files with 6 additions and 6 deletions
|
@ -76,13 +76,13 @@ def check(timeout):
|
|||
fail=False
|
||||
for ip in nodes:
|
||||
print("Contacting {}...".format(ip),end='')
|
||||
response = os.system("ping -c 1 -W " + str(timeout)+ " " + ip + " &>/dev/null")
|
||||
if response == 0:
|
||||
print("")
|
||||
else:
|
||||
try:
|
||||
subprocess.run(["ping", "-c", "1", "-W", str(timeout), ip],capture_output=True,check=True)
|
||||
nodes.append(ip)
|
||||
print()
|
||||
except:
|
||||
fail=True
|
||||
print("=> Not responding!!")
|
||||
|
||||
print("=> Not responding!!")
|
||||
if not fail:
|
||||
print("Success: All nodes are reachable")
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue