We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2674f87 commit f53d7baCopy full SHA for f53d7ba
extensions/gitpod/src/extension.ts
@@ -230,7 +230,8 @@ export async function activate(context: vscode.ExtensionContext) {
230
GITPOD_LCA_API_PORT: String(apiPort),
231
GITPOD_LCA_AUTO_TUNNEL: String(false),
232
GITPOD_LCA_AUTH_REDIRECT_URL: `${vscode.env.uriScheme}://${context.extension.id}${authCompletePath}`,
233
- GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get<boolean>('verbose', false))
+ GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get<boolean>('verbose', false)),
234
+ GITPOD_LCA_TIMEOUT: String(vscode.workspace.getConfiguration('gitpod').get<string>('timeout', '3h'))
235
}
236
});
237
localAppProcess.unref();
0 commit comments