We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc695c commit 0f0065bCopy full SHA for 0f0065b
news/2 Fixes/10170.md
@@ -0,0 +1 @@
1
+Perf improvements to executing startup code for `Data Science` features when extension loads.
src/client/datascience/activation.ts
@@ -30,7 +30,7 @@ export class Activation implements IExtensionSingleActivationService {
30
this.disposables.push(this.jupyterInterpreterService.onDidChangeInterpreter(this.onDidChangeInterpreter, this));
31
// Warm up our selected interpreter for the extension
32
this.jupyterInterpreterService.setInitialInterpreter().ignoreErrors();
33
- await this.contextService.activate();
+ this.contextService.activate().ignoreErrors();
34
}
35
36
private onDidOpenNotebookEditor(_: INotebookEditor) {
0 commit comments