We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3489c26 + a9edb36 commit 75540b4Copy full SHA for 75540b4
2 files changed
extensions/ql-vscode/CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## [UNRELEASED]
4
5
+- Fix a bug where the query server was restarted twice after configuration changes. [#2884](https://github.com/github/vscode-codeql/pull/2884).
6
+
7
## 1.9.1 - 29 September 2023
8
9
- Add warning when using a VS Code version older than 1.82.0. [#2854](https://github.com/github/vscode-codeql/pull/2854)
extensions/ql-vscode/src/query-server/server-process.ts
@@ -26,6 +26,7 @@ export class ServerProcess implements Disposable {
26
this.connection.end();
27
this.child.stdin!.end();
28
this.child.stderr!.destroy();
29
+ this.child.removeAllListeners();
30
// TODO kill the process if it doesn't terminate after a certain time limit.
31
32
// On Windows, we usually have to terminate the process before closing its stdout.
0 commit comments