From 94b172e314e1826fa4855eceaee4a1be13cbd4dd Mon Sep 17 00:00:00 2001 From: hyungi Date: Mon, 29 Jun 2026 13:30:53 +0900 Subject: [PATCH] =?UTF-8?q?ops(ci):=20boot=5Fsmoke=20=EC=8A=A4=ED=82=A4?= =?UTF-8?q?=EB=A7=88=20=EC=96=B4=EC=84=9C=EC=85=98=20max=5Fmigration=20361?= =?UTF-8?q?=E2=86=92378=20(=ED=98=84=EC=9E=AC=20=EB=A7=88=EC=9D=B4?= =?UTF-8?q?=EA=B7=B8=20=ED=97=A4=EB=93=9C)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 지난 감사(361) 이후 마이그가 378(이번 publish_outbox attempts/failed 포함)까지 전진 → boot_smoke 스키마 게이트의 하드코딩 기대값 갱신. purge/cand/uq 기대는 동일. Co-Authored-By: Claude Opus 4.8 (1M context) --- scripts/ci/boot_smoke.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/boot_smoke.py b/scripts/ci/boot_smoke.py index b924a1a..de96e70 100644 --- a/scripts/ci/boot_smoke.py +++ b/scripts/ci/boot_smoke.py @@ -106,7 +106,7 @@ async def main() -> None: "SELECT count(*) FROM pg_indexes WHERE indexname='uq_attempt_session_question'"))).scalar() mx = (await s.execute(text("SELECT max(version) FROM schema_migrations"))).scalar() print(f"SCHEMA OK — max_migration={mx} documents={docs} purge_col={purge} cand_qwen={cand} attempt_uq={uq}") - assert docs and purge == 1 and cand == 0 and uq == 1 and mx == 361, "FAIL: 기대 스키마 상태 불일치" + assert docs and purge == 1 and cand == 0 and uq == 1 and mx == 378, "FAIL: 기대 스키마 상태 불일치" # ── 5) /health 직접 호출 ────────────────────────────────────────────── health = await main.health_check()