Skip to content

Commit

Permalink
support timeout of local-app
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh authored and jeanp413 committed Mar 30, 2022
1 parent 234b3d7 commit b794592
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/gitpod/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<boolean>('verbose', false))
GITPOD_LCA_VERBOSE: String(vscode.workspace.getConfiguration('gitpod').get<boolean>('verbose', false)),
GITPOD_LCA_TIMEOUT: String(vscode.workspace.getConfiguration('gitpod').get<string>('timeout', '3h'))
}
});
localAppProcess.unref();
Expand Down

0 comments on commit b794592

Please sign in to comment.