mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(core): Save exeution progress for waiting executions, even when progress saving is disabled (#11535)
Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
committed by
GitHub
parent
19a5c2fcf1
commit
6b9353c80f
@@ -16,7 +16,7 @@ export async function saveExecutionProgress(
|
||||
) {
|
||||
const saveSettings = toSaveSettings(workflowData.settings);
|
||||
|
||||
if (!saveSettings.progress) return;
|
||||
if (!saveSettings.progress && !executionData.waitTill) return;
|
||||
|
||||
const logger = Container.get(Logger);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user