chore: 移除用于 debug 的任务发起数量限制

This commit is contained in:
amtoaer
2023-11-25 02:22:43 +08:00
parent 79e0a242bd
commit f10f9829d2

View File

@@ -158,7 +158,7 @@ async def process_favorite(favorite_id: int) -> None:
favorite_list=fav_list, downloaded=False
).prefetch_related("upper")
await asyncio.gather(
*[process_video(item) for item in list(all_unprocessed_items)[:5]],
*[process_video(item) for item in all_unprocessed_items],
return_exceptions=True,
)