Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Peet <connor@peet.io>2021-07-09 22:55:07 +0300
committerConnor Peet <connor@peet.io>2021-07-09 22:56:02 +0300
commitfd14f3ebc07f338d785979fd4fb01b3692a9e8b3 (patch)
treec0e8a1c537b6eb9f0f8f1734a8aac43cedfe8c05 /.vscode/launch.json
parent126218be8798646ca3b36dd13d4702a380d98b3f (diff)
debug: raise the extension host timeout
Fixes 126826
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 50cd6134a36..8f7e5726510 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -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",