We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd5b76 commit 68b304cCopy full SHA for 68b304c
e2e/test_proxy.py
@@ -27,8 +27,11 @@ def test_status(self):
27
response = ImmunisationApi.make_request_with_backoff(http_method="GET",
28
url=f"{self.proxy_url}/_status",
29
headers={"apikey": self.status_api_key})
30
+ print(f"Calling {self.proxy_url}/_status with api key: {self.status_api_key}")
31
self.assertEqual(response.status_code, 200, response.text)
32
body = response.json()
33
+ print(f"Status code {response.status_code} {body['status']}")
34
+
35
self.assertEqual(body["status"].lower(), "pass",
36
f"service is not healthy: status: {body['status']}")
37
0 commit comments