feat(core): Implement webhook-only manual execution (#4960)

*  Implement webhook-only manual execution

* ♻️ Apply feedback
This commit is contained in:
Iván Ovejero
2022-12-27 12:50:50 +01:00
committed by GitHub
parent d6bc760ab4
commit d113977b10
2 changed files with 8 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ export class TestWebhooks {
timeout: NodeJS.Timeout;
workflowData: IWorkflowDb;
workflow: Workflow;
destinationNode?: string;
};
} = {};
@@ -128,6 +129,7 @@ export class TestWebhooks {
}
resolve(data);
},
this.testWebhookData[webhookKey].destinationNode,
);
if (executionId === undefined) {
@@ -230,6 +232,7 @@ export class TestWebhooks {
timeout,
workflow,
workflowData,
destinationNode,
};
try {