mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 18:41:14 +00:00
fix(core): Fix execution cancellation issues in scaling mode (#12343)
This commit is contained in:
@@ -66,7 +66,7 @@ export class WorkflowRunner {
|
||||
//
|
||||
// FIXME: This is a quick fix. The proper fix would be to not remove
|
||||
// the execution from the active executions while it's still running.
|
||||
if (error instanceof ExecutionNotFoundError) {
|
||||
if (error instanceof ExecutionNotFoundError || error instanceof ExecutionCancelledError) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user