fix(core): Fix execution cancellation in scaling mode (#9841)

This commit is contained in:
Iván Ovejero
2024-06-28 20:05:09 +02:00
committed by GitHub
parent 10f7d4b5b9
commit e613de28ca
10 changed files with 417 additions and 143 deletions

View File

@@ -0,0 +1,7 @@
import { ApplicationError } from 'n8n-workflow';
export class MissingExecutionStopError extends ApplicationError {
constructor(executionId: string) {
super('Failed to find execution to stop', { extra: { executionId } });
}
}