v.0.11.4
This commit is contained in:
@@ -6,7 +6,7 @@ import urllib.request
|
||||
|
||||
try:
|
||||
port = int(os.getenv("WEB_PORT", "8080"))
|
||||
with urllib.request.urlopen(f"http://127.0.0.1:{port}/api/status", timeout=3) as response:
|
||||
with urllib.request.urlopen(f"http://127.0.0.1:{port}/api/health", timeout=3) as response:
|
||||
data = json.load(response)
|
||||
raise SystemExit(0 if data.get("operational") else 1)
|
||||
except Exception as exc:
|
||||
|
||||
Reference in New Issue
Block a user