Merge branch 'v2' into v2-dev

This commit is contained in:
xiaojunnuo
2025-08-07 10:23:44 +08:00
5 changed files with 144 additions and 2 deletions
@@ -461,7 +461,7 @@ export class PipelineService extends BaseService<PipelineEntity> {
cron = cron.replace("* *", "0 0");
}
if (cron.startsWith("*")) {
cron = cron.replace("*", "0");
cron = cron.replace(/\*/g, "0");
}
const triggerId = trigger.id;
const name = this.buildCronKey(pipelineId, triggerId);