Skip to content

Commit f53d7ba

Browse files
mustard-mhjeanp413
authored andcommitted
support timeout of local-app
1 parent 2674f87 commit f53d7ba

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
@@ -230,7 +230,8 @@ export async function activate(context: vscode.ExtensionContext) {
230230
GITPOD_LCA_API_PORT: String(apiPort),
231231
GITPOD_LCA_AUTO_TUNNEL: String(false),
232232
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))
233+
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'))
234235
}
235236
});
236237
localAppProcess.unref();

0 commit comments

Comments
 (0)