refactor(core): Remove unused execution status warning (no-changelog) (#9759)

This commit is contained in:
Iván Ovejero 2024-06-17 13:00:04 +02:00 committed by GitHub
parent f7352b6a8f
commit d615711728
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -21,7 +21,7 @@ export interface IExecutionResult {
workflowName: string;
executionTime: number; // Given in seconds with decimals for milliseconds
finished: boolean;
executionStatus: ExecutionStatus;
executionStatus: ExecutionStatus | 'warning';
error?: string;
changes?: object;
coveredNodes: {
@ -36,7 +36,7 @@ interface IExecutionError {
export interface IWorkflowExecutionProgress {
workflowId: string;
status: ExecutionStatus;
status: ExecutionStatus | 'warning';
}
export interface INodeSpecialCases {

View file

@ -7,7 +7,6 @@ export const ExecutionStatusList = [
'success',
'unknown',
'waiting',
'warning',
] as const;
export type ExecutionStatus = (typeof ExecutionStatusList)[number];