Fix issue with workflows running in main process

This commit is contained in:
Jan Oberhauser 2020-04-29 19:33:03 +02:00
parent f01b5731d3
commit 3d6a75d392

View file

@ -145,6 +145,10 @@ export class WorkflowRunner {
this.activeExecutions.attachWorkflowExecution(executionId, workflowExecution);
workflowExecution.then((fullRunData) => {
this.activeExecutions.remove(executionId, fullRunData);
});
return executionId;
}