mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +00:00
refactor(editor): Stop cloning and serializing full execution data for executionFinished push message (#11703)
This commit is contained in:
committed by
GitHub
parent
7bb9002cbc
commit
15ca2c4e45
@@ -1,4 +1,4 @@
|
||||
import type { IRun, ITaskData, WorkflowExecuteMode } from 'n8n-workflow';
|
||||
import type { ITaskData, WorkflowExecuteMode } from 'n8n-workflow';
|
||||
|
||||
type ExecutionStarted = {
|
||||
type: 'executionStarted';
|
||||
@@ -16,8 +16,6 @@ type ExecutionFinished = {
|
||||
type: 'executionFinished';
|
||||
data: {
|
||||
executionId: string;
|
||||
data: IRun;
|
||||
retryOf?: string;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user