Skip to content

Commit 68b304c

Browse files
committed
Proxy status
1 parent 1bd5b76 commit 68b304c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

e2e/test_proxy.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ def test_status(self):
2727
response = ImmunisationApi.make_request_with_backoff(http_method="GET",
2828
url=f"{self.proxy_url}/_status",
2929
headers={"apikey": self.status_api_key})
30+
print(f"Calling {self.proxy_url}/_status with api key: {self.status_api_key}")
3031
self.assertEqual(response.status_code, 200, response.text)
3132
body = response.json()
33+
print(f"Status code {response.status_code} {body['status']}")
34+
3235
self.assertEqual(body["status"].lower(), "pass",
3336
f"service is not healthy: status: {body['status']}")
3437

0 commit comments

Comments
 (0)