refactor(llm): 调整微调任务状态同步定时任务的执行频率

- 将定时任务的执行频率从每 20 秒一次修改为每分钟一次
This commit is contained in:
Liuyang 2025-03-01 13:23:35 +08:00
parent 0823596f97
commit 80590896cd

View File

@ -48,7 +48,7 @@ public class FineTuningTaskSyncService {
private static final String FINE_TUNING_LOG = "~~~ fine - tuning ~~~ : ";
@Scheduled(cron = "0/20 * * * * ?")
@Scheduled(cron = "0 */1 * * * ?")
public void updateFineTuningTaskStatus () {
// 方法入口微调任务状态同步定时任务
log.info("{} [定时任务] FineTuningTaskSync 启动 - 开始同步微调任务状态", FINE_TUNING_LOG);