From b7945921328ecd54f107bbe04a935f24fe12bdd5 Mon Sep 17 00:00:00 2001 From: mustard Date: Tue, 28 Dec 2021 14:55:05 +0000 Subject: [PATCH] support timeout of local-app --- extensions/gitpod/src/extension.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/gitpod/src/extension.ts b/extensions/gitpod/src/extension.ts index 7ca7d3f0f7d52..9aaa44b635222 100644 --- a/extensions/gitpod/src/extension.ts +++ b/extensions/gitpod/src/extension.ts @@ -230,7 +230,8 @@ export async function activate(context: vscode.ExtensionContext) { GITPOD_LCA_API_PORT: String(apiPort), GITPOD_LCA_AUTO_TUNNEL: String(false), GITPOD_LCA_AUTH_REDIRECT_URL: `${vscode.env.uriScheme}://${context.extension.id}${authCompletePath}`, - GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get('verbose', false)) + GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get('verbose', false)), + GITPOD_LCA_TIMEOUT: String(vscode.workspace.getConfiguration('gitpod').get('timeout', '3h')) } }); localAppProcess.unref();