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 0e98750 commit 4e1e750Copy full SHA for 4e1e750
extensions/gitpod/src/extension.ts
@@ -231,7 +231,8 @@ export async function activate(context: vscode.ExtensionContext) {
231
GITPOD_LCA_API_PORT: String(apiPort),
232
GITPOD_LCA_AUTO_TUNNEL: String(false),
233
GITPOD_LCA_AUTH_REDIRECT_URL: `${vscode.env.uriScheme}://${context.extension.id}${authCompletePath}`,
234
- GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get<boolean>('verbose', false))
+ GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get<boolean>('verbose', false)),
235
+ GITPOD_LCA_TIMEOUT: String(vscode.workspace.getConfiguration('gitpod').get<string>('timeout', '3h'))
236
}
237
});
238
localAppProcess.unref();
0 commit comments