refactor(core): Add an option to use simple recovery process by default (#7097)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-09-04 19:58:36 +02:00
committed by GitHub
parent ee36f2d20b
commit cffda65b33
3 changed files with 22 additions and 9 deletions

View File

@@ -1124,6 +1124,12 @@ export const schema = {
env: 'N8N_EVENTBUS_LOGWRITER_LOGBASENAME',
},
},
crashRecoveryMode: {
doc: 'Should n8n try to recover execution details after a crash, or just mark pending executions as crashed',
format: ['simple', 'extensive'] as const,
default: 'extensive',
env: 'N8N_EVENTBUS_RECOVERY_MODE',
},
},
redis: {