Skip to content

Commit eac854e

Browse files
committed
Post-rebase fixes
1 parent 4b24ad7 commit eac854e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/client/activation/jedi/languageServerProxy.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ export class JediLanguageServerProxy implements ILanguageServerProxy {
5656
interpreter: PythonEnvironment | undefined,
5757
options: LanguageClientOptions,
5858
): Promise<void> {
59-
if (this.languageServerTask) {
60-
await this.languageServerTask;
61-
return;
62-
}
63-
6459
this.lsVersion =
6560
(options.middleware ? (<JediLanguageClientMiddleware>options.middleware).serverVersion : undefined) ??
6661
'0.19.3';
@@ -97,9 +92,6 @@ export class JediLanguageServerProxy implements ILanguageServerProxy {
9792
const d = this.disposables.shift()!;
9893
d.dispose();
9994
}
100-
101-
this.languageServerTask = this.languageClient.start();
102-
await this.languageServerTask;
10395
}
10496

10597
// eslint-disable-next-line class-methods-use-this

0 commit comments

Comments
 (0)