mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
🐛 Fix issue with failed workflows being displayed as "running"
This commit is contained in:
parent
25b5d36dda
commit
8cceec1209
|
@ -233,6 +233,8 @@ export class WorkflowRunner {
|
||||||
fullRunData.finished = false;
|
fullRunData.finished = false;
|
||||||
}
|
}
|
||||||
this.activeExecutions.remove(executionId, fullRunData);
|
this.activeExecutions.remove(executionId, fullRunData);
|
||||||
|
}).catch((error) => {
|
||||||
|
this.processError(error, new Date(), data.executionMode, executionId, additionalData.hooks);
|
||||||
});
|
});
|
||||||
|
|
||||||
return executionId;
|
return executionId;
|
||||||
|
|
Loading…
Reference in a new issue