fix(core): Stopping an execution should reject any response promises (#9992)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-07-16 19:25:20 +02:00
committed by GitHub
parent 5e57b0d71e
commit 36b314d031
9 changed files with 55 additions and 23 deletions

View File

@@ -86,7 +86,7 @@ export class WaitTracker {
}
}
async stopExecution(executionId: string) {
stopExecution(executionId: string) {
if (!this.waitingExecutions[executionId]) return;
clearTimeout(this.waitingExecutions[executionId].timer);