diff --git a/B07_Quantity/B07_Quantity_Router.py b/B07_Quantity/B07_Quantity_Router.py index 934f2f95..44a5d216 100644 --- a/B07_Quantity/B07_Quantity_Router.py +++ b/B07_Quantity/B07_Quantity_Router.py @@ -21,7 +21,7 @@ router = APIRouter(prefix="/api/projects", tags=["B07 Quantity"]) @router.post("/{project_id}/quantity/confirm") async def confirm_quantity(project_id: UUID) -> JSONResponse: """수량 단계 확정 — stage 4(QUANTITY)를 COMPLETE로 전이한다 (본문 미구현).""" - pool = await get_db_pool() + pool = get_db_pool() async with pool.acquire() as connection: try: async with connection.cursor() as cursor: