|
@@ -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
|