fix(core): Node mocking for evaluation executions (no-changelog) (#12541)

This commit is contained in:
Eugene
2025-01-13 10:45:29 +01:00
committed by GitHub
parent 865fc21276
commit dcd7feb973
7 changed files with 48 additions and 17 deletions

View File

@@ -71,7 +71,11 @@ export class ManualExecutionService {
},
};
const workflowExecute = new WorkflowExecute(additionalData, 'manual', executionData);
const workflowExecute = new WorkflowExecute(
additionalData,
data.executionMode,
executionData,
);
return workflowExecute.processRunExecutionData(workflow);
} else if (
data.runData === undefined ||