From 2a44fab8ba722071abf44620fb64f2bfd05d7538 Mon Sep 17 00:00:00 2001 From: Kevin Cunnane Date: Tue, 9 Apr 2019 14:10:56 -0700 Subject: [PATCH] Fix issue where mac launch often failed to attach (#4957) - Timeout now matches the windows timeout value --- .vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 26e4b56fc9..4ae9375942 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -70,10 +70,12 @@ "timeout": 20000 }, "osx": { - "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh" + "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh", + "timeout": 20000 }, "linux": { - "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh" + "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh", + "timeout": 20000 }, "env": { "VSCODE_EXTHOST_WILL_SEND_SOCKET": null