From 4c111ca7f2aca8b0d70fc56f998b219e219d5334 Mon Sep 17 00:00:00 2001 From: hyungi Date: Mon, 15 Jun 2026 03:43:55 +0000 Subject: [PATCH] =?UTF-8?q?fix(observability):=20BackgroundJobItem=20?= =?UTF-8?q?=EC=9D=91=EB=8B=B5=20=EB=AA=A8=EB=8D=B8=EC=97=90=20machine=20?= =?UTF-8?q?=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80=20(=EC=A7=81=EB=A0=AC?= =?UTF-8?q?=ED=99=94=20=EB=88=84=EB=9D=BD=20=EC=88=98=EC=A0=95)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit f325bd0 이 서비스 payload·frontend 타입엔 machine 을 넣었으나 API Pydantic response_model(BackgroundJobItem)에 누락 → FastAPI 가 직렬화 시 탈락. 한 줄 추가. Co-Authored-By: Claude Opus 4.8 (1M context) --- app/api/queue_overview.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/queue_overview.py b/app/api/queue_overview.py index 9b93366..647433a 100644 --- a/app/api/queue_overview.py +++ b/app/api/queue_overview.py @@ -108,6 +108,7 @@ class BackgroundJobItem(BaseModel): stale = running 인데 heartbeat 가 오래 끊김(프로세스 사망 추정).""" id: int kind: str + machine: str label: str | None state: Literal["running", "done", "failed"] processed: int