diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index f65620aebc6..c47680fbac5 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -91,10 +91,7 @@ async function activateServer(ctx: Ctx): Promise { ctx.subscriptions ); - await ctx.activate().catch((err) => { - void vscode.window.showErrorMessage(`Cannot activate rust-analyzer server: ${err.message}`); - }); - + await ctx.activate(); return ctx.clientFetcher(); }