mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
refactor(editor): Remove deleted event name from UI (#10402)
This commit is contained in:
parent
387fa0324d
commit
67a10983df
|
@ -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;
|
||||||
|
|
|
@ -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];
|
||||||
|
|
Loading…
Reference in a new issue