File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 22
33## [ UNRELEASED]
44
5+ - Fix a bug where the query server was restarted twice after configuration changes. [ #2884 ] ( https://github.com/github/vscode-codeql/pull/2884 ) .
6+
57## 1.9.1 - 29 September 2023
68
79- Add warning when using a VS Code version older than 1.82.0. [ #2854 ] ( https://github.com/github/vscode-codeql/pull/2854 )
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export class ServerProcess implements Disposable {
2626 this . connection . end ( ) ;
2727 this . child . stdin ! . end ( ) ;
2828 this . child . stderr ! . destroy ( ) ;
29+ this . child . removeAllListeners ( ) ;
2930 // TODO kill the process if it doesn't terminate after a certain time limit.
3031
3132 // On Windows, we usually have to terminate the process before closing its stdout.
You can’t perform that action at this time.
0 commit comments