fix(core): Fall back to regular mode for execute and executeBatch commands (#14381)

This commit is contained in:
Iván Ovejero
2025-04-09 10:26:10 +02:00
committed by GitHub
parent 860bb1ef92
commit 84e85c9469
3 changed files with 24 additions and 2 deletions

View File

@@ -55,6 +55,10 @@ export class WorkflowRunner {
private readonly executionDataService: ExecutionDataService,
) {}
setExecutionMode(mode: 'regular' | 'queue') {
this.executionsMode = mode;
}
/** The process did error */
async processError(
error: ExecutionError | ExecutionNotFoundError,