From 3780c10f39f7a61ebfee9a85b714bd930edff304 Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Fri, 17 Apr 2026 08:26:08 +0900 Subject: [PATCH] =?UTF-8?q?fix(scripts):=20verify=5Fupload=5Fsize=20?= =?UTF-8?q?=E2=80=94=20processing=5Fqueue=20=EC=BB=AC=EB=9F=BC=20doc=5Fid?= =?UTF-8?q?=20=E2=86=92=20document=5Fid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/verify_upload_size.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/verify_upload_size.py b/scripts/verify_upload_size.py index 86d1dff..bc6550d 100644 --- a/scripts/verify_upload_size.py +++ b/scripts/verify_upload_size.py @@ -76,7 +76,7 @@ async def _pre_cleanup(session_factory, inbox: Path) -> int: for doc_id, file_path in rows: _unlink_by_relpath(file_path, inbox) await s.execute( - text("DELETE FROM processing_queue WHERE doc_id = :id"), + text("DELETE FROM processing_queue WHERE document_id = :id"), {"id": doc_id}, ) await s.execute( @@ -117,7 +117,7 @@ async def _case_cleanup( for doc_id, file_path in rows: _unlink_by_relpath(file_path, inbox) await s.execute( - text("DELETE FROM processing_queue WHERE doc_id = :id"), + text("DELETE FROM processing_queue WHERE document_id = :id"), {"id": doc_id}, ) await s.execute(