@@ -56,7 +56,7 @@ def video_task():
# 设置超时时间为20分钟
timeout = 25 * 60
# 等待所有任务执行完成或超时
- for future in concurrent.futures.as_completed(futures, timeout=timeout):
+ for future in concurrent.futures.as_completed(futures):
try:
# 获取每个任务的执行结果
result = future.result()
@@ -45,7 +45,7 @@ def video_task():
# 设置超时时间为360分钟
timeout = 360 * 60
@@ -43,7 +43,7 @@ def video_task():