diff --git a/src/ci_relay/web.py b/src/ci_relay/web.py index 5ed3c65..7ae97e0 100644 --- a/src/ci_relay/web.py +++ b/src/ci_relay/web.py @@ -102,7 +102,9 @@ async def health(request): gitlab_ok = False status = 200 if github_ok and gitlab_ok else 500 - text = f"GitHub: {"ok" if github_ok else "not ok"}, GitLab: {"ok" if gitlab_ok else "not ok"}" + github_str = "ok" if github_ok else "not ok" + gitlab_str = "ok" if gitlab_ok else "not ok" + text = f"GitHub: {github_str}, GitLab: {gitlab_str}" return response.text(text, status=status) async def handle_webhook(request):