From 0bb5791cd5d90db1c8ae5ac8bcf3876e0658ea6a Mon Sep 17 00:00:00 2001 From: zk Date: Mon, 13 Jul 2026 18:43:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=BF=87=E6=BB=A4=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/job_clean_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/job_clean_service.py b/app/services/job_clean_service.py index 5a0e4d9..ce3f2c4 100644 --- a/app/services/job_clean_service.py +++ b/app/services/job_clean_service.py @@ -97,7 +97,7 @@ async def _fetch_one() -> dict | None: SET clean_status = 'cleaning', clean_started_at = NOW() WHERE id = ( SELECT id FROM app_job_data - WHERE clean_status = 'pending' AND recruit_category IN (0,1,2) + WHERE clean_status = 'pending' AND verify_status = 'success' AND recruit_category IN (0,1,2) LIMIT 1 FOR UPDATE SKIP LOCKED )