fix(video): 减少视频任务生成器的等待时间

- 将线程睡眠时间从5000毫秒减少到2000毫秒
- 提高视频任务处理效率
- 减少系统资源占用
This commit is contained in:
2025-10-28 18:04:35 +08:00
parent 028178605e
commit 07ebccad3c

View File

@@ -106,7 +106,7 @@ public class VideoTaskGenerator {
} }
} }
try { try {
Thread.sleep(5000L); Thread.sleep(2000L);
} catch (InterruptedException e) { } catch (InterruptedException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }