Skip to content

Commit

Permalink
debug: raise the extension host timeout
Browse files Browse the repository at this point in the history
Fixes 126826
  • Loading branch information
connor4312 committed Jul 9, 2021
1 parent 126218b commit fd14f3e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit fd14f3e

Please sign in to comment.