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:
कारतोफ्फेलस्क्रिप्ट™
2024-11-04 17:12:22 +01:00
committed by GitHub
parent 19a5c2fcf1
commit 6b9353c80f
2 changed files with 34 additions and 2 deletions

View File

@@ -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);