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