rest_client.py

updated for connection error case
pull/4472/head
av1nxsh 5 years ago committed by GitHub
parent 95c635091e
commit 218d22ed52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -176,7 +176,9 @@ class FtRestClient():
def ping(self):
"""simple ping"""
if self.show_config()['state'] == "running":
if not self.show_config():
return {"status": "not_running"}
elif self.show_config()['state'] == "running":
return {"status": "pong"}
else:
return {"status": "not_running"}

Loading…
Cancel
Save