mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(core): Prevent executions from displaying Running status incorrectly (#7261)
Github issue / Community forum post (link here to close automatically): https://linear.app/n8n/issue/HELP-338/large-number-of-long-running-executions-for-nadjalemlist#comment-18d1fc96 After investigating this issue with @ivov and @flipswitchingmonkey we've identified this missing assignment of execution status. This is the only inconsistency we've found that could cause executions to continue displaying as `Running` even after finished.
This commit is contained in:
@@ -1591,6 +1591,7 @@ export class WorkflowExecute {
|
|||||||
} else {
|
} else {
|
||||||
Logger.verbose('Workflow execution finished successfully', { workflowId: workflow.id });
|
Logger.verbose('Workflow execution finished successfully', { workflowId: workflow.id });
|
||||||
fullRunData.finished = true;
|
fullRunData.finished = true;
|
||||||
|
fullRunData.status = 'success';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if static data changed
|
// Check if static data changed
|
||||||
|
|||||||
Reference in New Issue
Block a user