Fix issue where mac launch often failed to attach (#4957)

- Timeout now matches the windows timeout value
This commit is contained in:
Kevin Cunnane
2019-04-09 14:10:56 -07:00
committed by GitHub
parent 6a06a99e46
commit 2a44fab8ba

6
.vscode/launch.json vendored
View File

@@ -70,10 +70,12 @@
"timeout": 20000 "timeout": 20000
}, },
"osx": { "osx": {
"runtimeExecutable": "${workspaceFolder}/scripts/sql.sh" "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh",
"timeout": 20000
}, },
"linux": { "linux": {
"runtimeExecutable": "${workspaceFolder}/scripts/sql.sh" "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh",
"timeout": 20000
}, },
"env": { "env": {
"VSCODE_EXTHOST_WILL_SEND_SOCKET": null "VSCODE_EXTHOST_WILL_SEND_SOCKET": null