mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
perf(core): Introduce concurrency control for main mode (#9453)
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
export const ExecutionStatusList = [
|
||||
'canceled' as const,
|
||||
'crashed' as const,
|
||||
'error' as const,
|
||||
'new' as const,
|
||||
'running' as const,
|
||||
'success' as const,
|
||||
'unknown' as const,
|
||||
'waiting' as const,
|
||||
'warning' as const,
|
||||
];
|
||||
'canceled',
|
||||
'crashed',
|
||||
'error',
|
||||
'new',
|
||||
'running',
|
||||
'success',
|
||||
'unknown',
|
||||
'waiting',
|
||||
'warning',
|
||||
] as const;
|
||||
|
||||
export type ExecutionStatus = (typeof ExecutionStatusList)[number];
|
||||
|
||||
Reference in New Issue
Block a user