mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix: Workflows executed from other workflows not stopping (#9010)
This commit is contained in:
@@ -851,7 +851,9 @@ async function executeWorkflow(
|
||||
workflowExecute,
|
||||
};
|
||||
}
|
||||
data = await workflowExecute.processRunExecutionData(workflow);
|
||||
const execution = workflowExecute.processRunExecutionData(workflow);
|
||||
activeExecutions.attachWorkflowExecution(executionId, execution);
|
||||
data = await execution;
|
||||
} catch (error) {
|
||||
const executionError = error ? (error as ExecutionError) : undefined;
|
||||
const fullRunData: IRun = {
|
||||
|
||||
Reference in New Issue
Block a user