We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99099b0 commit 93c5964Copy full SHA for 93c5964
arduino-ide-extension/src/browser/theia/debug/debug-session-manager.ts
@@ -62,4 +62,11 @@ export class DebugSessionManager extends TheiaDebugSessionManager {
62
}
63
);
64
65
+ async terminateSessions(): Promise<void> {
66
+ await super.terminateSessions();
67
+ const session = this.currentSession;
68
+ if (session) {
69
+ this.destroy(session.id);
70
+ }
71
72
0 commit comments