mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-13 05:47:31 -08:00
⚡ Fix issue with workflows running in main process
This commit is contained in:
parent
f01b5731d3
commit
3d6a75d392
|
@ -145,6 +145,10 @@ export class WorkflowRunner {
|
||||||
|
|
||||||
this.activeExecutions.attachWorkflowExecution(executionId, workflowExecution);
|
this.activeExecutions.attachWorkflowExecution(executionId, workflowExecution);
|
||||||
|
|
||||||
|
workflowExecution.then((fullRunData) => {
|
||||||
|
this.activeExecutions.remove(executionId, fullRunData);
|
||||||
|
});
|
||||||
|
|
||||||
return executionId;
|
return executionId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue