diff --git a/backend/src/api/routes/git/_helpers.py b/backend/src/api/routes/git/_helpers.py index 7f2ac9d5..62f57c9e 100644 --- a/backend/src/api/routes/git/_helpers.py +++ b/backend/src/api/routes/git/_helpers.py @@ -66,7 +66,7 @@ async def _resolve_repository_status(dashboard_id: int) -> dict: return _build_no_repo_status_payload() try: - return git_service.get_status(dashboard_id) + return await git_service.get_status(dashboard_id) except HTTPException as e: if e.status_code == 404: logger.reason(