perf: 支持批量重新运行

This commit is contained in:
xiaojunnuo
2025-05-27 11:08:08 +08:00
parent 36b02c2cec
commit 818998259d
5 changed files with 80 additions and 3 deletions
@@ -489,7 +489,15 @@ export class Executor {
}
}
/**
*
* @param stepId 如果==ALL 清除所有
*/
clearLastStatus(stepId: string) {
if (stepId === "ALL") {
this.lastStatusMap.clear();
return;
}
this.lastStatusMap.clearById(stepId);
}
}