mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
fix(core): Do not delete waiting executions when saving of successful executions is disabled (#11458)
This commit is contained in:
committed by
GitHub
parent
23677062d9
commit
e8757e58f6
@@ -468,7 +468,7 @@ function hookFunctionsSave(): IWorkflowExecuteHooks {
|
|||||||
(executionStatus === 'success' && !saveSettings.success) ||
|
(executionStatus === 'success' && !saveSettings.success) ||
|
||||||
(executionStatus !== 'success' && !saveSettings.error);
|
(executionStatus !== 'success' && !saveSettings.error);
|
||||||
|
|
||||||
if (shouldNotSave) {
|
if (shouldNotSave && !fullRunData.waitTill) {
|
||||||
if (!fullRunData.waitTill && !isManualMode) {
|
if (!fullRunData.waitTill && !isManualMode) {
|
||||||
executeErrorWorkflow(
|
executeErrorWorkflow(
|
||||||
this.workflowData,
|
this.workflowData,
|
||||||
|
|||||||
Reference in New Issue
Block a user