luojunhui 3 months ago
parent
commit
6ef5ff013a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      applications/match_algorithm/rank_by_fission_on_read.py

+ 2 - 2
applications/match_algorithm/rank_by_fission_on_read.py

@@ -31,7 +31,7 @@ async def get_content_id_fission_info(content_id_tuple: tuple[str], db_client, v
         LIMIT {video_limit};
     """
     response = await db_client.async_select(select_sql, DictCursor)
-    print("get_content_id_fission_info", response)
+    # print("get_content_id_fission_info", response)
     return response
 
 
@@ -55,6 +55,6 @@ async def get_history_content_ids(content_id: str, db_client) -> tuple[str]:
         WHERE c.content_id = '{content_id}';
     """
     response = await db_client.async_select(select_sql, DictCursor)
-    print("get_history_content_ids", response) 
+    # print("get_history_content_ids", response) 
     response_tuple = tuple(item["content_id"] for item in response)
     return response_tuple