debug: raise the extension host timeout

Fixes 126826
This commit is contained in:
Connor Peet 2021-07-09 12:55:07 -07:00
parent 126218be87
commit fd14f3ebc0
No known key found for this signature in database
GPG key ID: CF8FD2EA0DBC61BD

6
.vscode/launch.json vendored
View file

@ -16,7 +16,11 @@
"request": "attach",
"restart": true,
"name": "Attach to Extension Host",
"timeout": 30000,
// set to a large number: if there is an issue we're debugging that keeps
// the extension host from coming up, or the renderer is paused/crashes
// before it happens, developers will get an annoying alert, e.g. #126826.
// This can be set to 0 in 1.59.
"timeout": 999999999,
"port": 5870,
"outFiles": [
"${workspaceFolder}/out/**/*.js",