mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
refactor(core): Unify failed and error execution status (no-changelog) (#8943)
This commit is contained in:
@@ -155,7 +155,7 @@ export class ExecutionDataRecoveryService {
|
||||
}
|
||||
|
||||
if (applyToDb) {
|
||||
const newStatus = executionEntry.status === 'failed' ? 'failed' : 'crashed';
|
||||
const newStatus = executionEntry.status === 'error' ? 'error' : 'crashed';
|
||||
await this.executionRepository.updateExistingExecution(executionId, {
|
||||
data: executionData,
|
||||
status: newStatus,
|
||||
|
||||
Reference in New Issue
Block a user