mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(core): Fix onWorkflowPostExecute not being called (#5224)
fix onWorkflowPostExecute
This commit is contained in:
parent
0b123ce05e
commit
4f89fb4d4d
|
@ -1013,7 +1013,12 @@ async function executeWorkflow(
|
||||||
|
|
||||||
await externalHooks.run('workflow.postExecute', [data, workflowData, executionId]);
|
await externalHooks.run('workflow.postExecute', [data, workflowData, executionId]);
|
||||||
|
|
||||||
void InternalHooksManager.getInstance().onWorkflowBeforeExecute(executionId || '', runData);
|
void InternalHooksManager.getInstance().onWorkflowPostExecute(
|
||||||
|
executionId,
|
||||||
|
workflowData,
|
||||||
|
data,
|
||||||
|
additionalData.userId,
|
||||||
|
);
|
||||||
|
|
||||||
if (data.finished === true) {
|
if (data.finished === true) {
|
||||||
// Workflow did finish successfully
|
// Workflow did finish successfully
|
||||||
|
|
Loading…
Reference in a new issue