We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99099b0 commit 117f640Copy full SHA for 117f640
arduino-ide-extension/src/browser/theia/debug/debug-session-manager.ts
@@ -62,4 +62,15 @@ export class DebugSessionManager extends TheiaDebugSessionManager {
62
}
63
);
64
65
+ async terminateSessions(): Promise<void> {
66
+ try {
67
+ await super.terminateSessions();
68
+ } catch {
69
+ // NOOP
70
+ }
71
+ const session = this.currentSession;
72
+ if (session) {
73
+ this.destroy(session.id);
74
75
76
0 commit comments