mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 05:15:04 +00:00
vscode-postrefactor: unhandled promise rejections shall not pass 2
This commit is contained in:
parent
c2b0fffe3d
commit
607d017229
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ export async function activate(context: vscode.ExtensionContext) {
|
|||
vscode.workspace.onDidChangeConfiguration(() => ensureProperExtensionVersion(config).catch(log.error));
|
||||
|
||||
// Don't await the user response here, otherwise we will block the lsp server bootstrap
|
||||
void ensureProperExtensionVersion(config);
|
||||
void ensureProperExtensionVersion(config).catch(log.error);
|
||||
|
||||
const serverPath = await ensureServerBinary(config);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue