You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/ql-vscode/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
## [UNRELEASED]
4
4
5
5
- Remove support for CodeQL CLI versions older than 2.13.5. [#3371](https://github.com/github/vscode-codeql/pull/3371)
6
+
- Add a timeout to downloading databases and the CodeQL CLI. These can be changed using the `codeQL.addingDatabases.downloadTimeout` and `codeQL.cli.downloadTimeout` settings respectively. [#3373](https://github.com/github/vscode-codeql/pull/3373)
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -178,6 +178,11 @@
178
178
"type": "string",
179
179
"default": "",
180
180
"markdownDescription": "Path to the CodeQL executable that should be used by the CodeQL extension. The executable is named `codeql` on Linux/Mac and `codeql.exe` on Windows. If empty, the extension will look for a CodeQL executable on your shell PATH, or if CodeQL is not on your PATH, download and manage its own CodeQL executable (note: if you later introduce CodeQL on your PATH, the extension will prefer a CodeQL executable it has downloaded itself)."
181
+
},
182
+
"codeQL.cli.downloadTimeout": {
183
+
"type": "integer",
184
+
"default": 10,
185
+
"description": "Download timeout in seconds for downloading the CLI distribution."
181
186
}
182
187
}
183
188
},
@@ -376,6 +381,11 @@
376
381
"title": "Adding databases",
377
382
"order": 6,
378
383
"properties": {
384
+
"codeQL.addingDatabases.downloadTimeout": {
385
+
"type": "integer",
386
+
"default": 10,
387
+
"description": "Download timeout in seconds for adding a CodeQL database."
0 commit comments