fix(core): Update subworkflow execution status correctly (#10764)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-09-11 10:39:18 +02:00
committed by GitHub
parent b9d157db40
commit 4f94319cd9
16 changed files with 51 additions and 78 deletions

View File

@@ -7,9 +7,7 @@ import type {
IDataObject,
IDeferredPromise,
IExecuteResponsePromiseData,
IPinData,
IRun,
IRunData,
IRunExecutionData,
ITaskData,
ITelemetryTrackProperties,
@@ -22,7 +20,7 @@ import type {
FeatureFlags,
INodeProperties,
IUserSettings,
StartNodeData,
IWorkflowExecutionDataProcess,
} from 'n8n-workflow';
import type { ActiveWorkflowManager } from '@/active-workflow-manager';
@@ -495,21 +493,6 @@ export interface IWorkflowErrorData {
};
}
export interface IWorkflowExecutionDataProcess {
destinationNode?: string;
restartExecutionId?: string;
executionMode: WorkflowExecuteMode;
executionData?: IRunExecutionData;
runData?: IRunData;
pinData?: IPinData;
retryOf?: string;
pushRef?: string;
startNodes?: StartNodeData[];
workflowData: IWorkflowBase;
userId?: string;
projectId?: string;
}
export interface IWorkflowExecuteProcess {
startedAt: Date;
workflow: Workflow;