mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(core): Fix issue that static data did not get saved for poll-triggers (#3853)
⚡ fix
This commit is contained in:
parent
a9fa830bd7
commit
8311abcf9d
|
@ -653,6 +653,7 @@ export class ActiveWorkflowRunner {
|
|||
returnFunctions.__emit = (data: INodeExecutionData[][]): void => {
|
||||
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
||||
Logger.debug(`Received event to trigger execution for workflow "${workflow.name}"`);
|
||||
WorkflowHelpers.saveStaticData(workflow);
|
||||
this.runWorkflow(workflowData, node, data, additionalData, mode);
|
||||
};
|
||||
return returnFunctions;
|
||||
|
|
Loading…
Reference in a new issue