luojunhui 3 달 전
부모
커밋
2d338a201c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tasks/account_recognize_by_llm.py

+ 1 - 1
tasks/account_recognize_by_llm.py

@@ -55,7 +55,7 @@ class AccountRecognizer:
         """
         fetch_query = f"""
             select id, title_list from crawler_candidate_account_pool
-            where avg_score is null and status = 0;
+            where avg_score is null and status = 0 and title_list is not null;
         """
         fetch_response = self.db_client.fetch(fetch_query, cursor_type=DictCursor)
         return fetch_response