mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Make execution status non-nullable (no-changelog) (#9483)
This commit is contained in:
@@ -30,7 +30,7 @@ export async function createExecution(
|
||||
...(workflow !== undefined && { workflowId: workflow.id }),
|
||||
stoppedAt: stoppedAt ?? new Date(),
|
||||
waitTill: waitTill ?? null,
|
||||
status,
|
||||
status: status ?? 'success',
|
||||
deletedAt,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user