From 204cee67d66c77518c85664e2175593a80b7d1f1 Mon Sep 17 00:00:00 2001 From: gahusb Date: Tue, 12 May 2026 08:03:34 +0900 Subject: [PATCH] =?UTF-8?q?fix(lotto):=20grade=5Fweekly=5Freview=20import?= =?UTF-8?q?=EC=9A=A9=20httpx=20=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 운영 사이트 nginx emerg 'host not found in upstream lotto'의 진짜 원인은 lotto 컨테이너 자체가 ModuleNotFoundError: httpx로 시작 실패한 것이었음. grade_weekly_review.py가 httpx를 import하는데 requirements 에서 누락. 재빌드 시 컨테이너 정상 부팅 가능. Co-Authored-By: Claude Opus 4.7 (1M context) --- lotto/app/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/lotto/app/requirements.txt b/lotto/app/requirements.txt index f1edcc1..6e95e51 100644 --- a/lotto/app/requirements.txt +++ b/lotto/app/requirements.txt @@ -1,5 +1,6 @@ fastapi==0.115.6 uvicorn[standard]==0.30.6 requests==2.32.3 +httpx==0.27.2 beautifulsoup4==4.12.3 APScheduler==3.10.4