Skip to content

Commit 4e1e750

Browse files
mustard-mhjeanp413
authored andcommitted
support timeout of local-app
1 parent 0e98750 commit 4e1e750

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extensions/gitpod/src/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ export async function activate(context: vscode.ExtensionContext) {
231231
GITPOD_LCA_API_PORT: String(apiPort),
232232
GITPOD_LCA_AUTO_TUNNEL: String(false),
233233
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))
234+
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'))
235236
}
236237
});
237238
localAppProcess.unref();

0 commit comments

Comments
 (0)