fix: skipPreprocessor on re-running job immedaitely from UI

This commit is contained in:
Ruben Fiszel
2025-08-29 07:24:47 +00:00
parent 01d98239e2
commit fa43b7a672
@@ -355,12 +355,14 @@
if (job?.job_kind == 'script') {
id = await JobService.runScriptByHash({
...commonArgs,
hash: job.script_hash!
hash: job.script_hash!,
skipPreprocessor: true
})
} else {
id = await JobService.runFlowByPath({
...commonArgs,
path: job.script_path!
path: job.script_path!,
skipPreprocessor: true
})
}