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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View file

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

View file

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