refactor(editor): Remove deleted event name from UI (#10402)

This commit is contained in:
Iván Ovejero
2024-08-14 17:09:43 +02:00
committed by GitHub
parent 387fa0324d
commit 67a10983df
2 changed files with 0 additions and 2 deletions

View File

@@ -10,7 +10,6 @@ export const eventNamesWorkflow = [
'n8n.workflow.started',
'n8n.workflow.success',
'n8n.workflow.failed',
'n8n.workflow.crashed',
] as const;
export const eventNamesGeneric = ['n8n.worker.started', 'n8n.worker.stopped'] as const;
export const eventNamesNode = ['n8n.node.started', 'n8n.node.finished'] as const;

View File

@@ -225,7 +225,6 @@ export class MessageEventBusLogWriter {
break;
case 'n8n.workflow.success':
case 'n8n.workflow.failed':
case 'n8n.workflow.crashed':
case 'n8n.execution.throttled':
case 'n8n.execution.started-during-bootup':
delete results.unfinishedExecutions[executionId];