fix(task): 调整任务渲染作业映射参数配置

- 将预览就绪所需的最小已发布片段数从2调整为3
- 将定时轮询间隔从2秒调整为1秒
```
This commit is contained in:
2026-02-10 00:03:09 +08:00
parent 7316591ebd
commit d609fe8ac3
2 changed files with 3 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ public class TaskRenderJobMappingEntity {
/**
* 预览就绪所需的最小已发布片段数
*/
public static final int MIN_PUBLISHED_FOR_PREVIEW = 2;
public static final int MIN_PUBLISHED_FOR_PREVIEW = 3;
/**
* 最大重试次数

View File

@@ -54,9 +54,9 @@ public class RenderJobPollingService {
private final FaceStatusManager faceStatusManager;
/**
* 定时轮询间隔:2秒
* 定时轮询间隔:1+1=2秒
*/
private static final int POLL_INTERVAL_SECONDS = 2;
private static final int POLL_INTERVAL_SECONDS = 1;
/**
* 每次查询的最大记录数