Skip to content

Commit 1cc5a85

Browse files
authored
Update src/integrations/terminal/TerminalProcess.ts
1 parent 67a4181 commit 1cc5a85

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/integrations/terminal/TerminalProcess.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,11 @@ export class TerminalProcess extends BaseTerminalProcess {
284284
// total retry window is bounded so dispose() is never delayed for long.
285285
if (!this.aborting) {
286286
this.aborting = true
287-
void this.retryAbort().finally(() => {
288-
this.aborting = false
289-
})
287+
void this.retryAbort()
288+
.finally(() => {
289+
this.aborting = false
290+
})
291+
.catch((err) => console.error("[TerminalProcess] retryAbort error:", err))
290292
}
291293
}
292294

0 commit comments

Comments
 (0)