Skip to content

Commit 0e309a7

Browse files
authored
Fix config provider ordering. (#11237)
1 parent 27f9faf commit 0e309a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Extension/src/LanguageServer/client.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1856,9 +1856,11 @@ export class DefaultClient implements Client {
18561856
if (!currentProvider.isReady) {
18571857
return;
18581858
}
1859+
18591860
await Promise.all([
18601861
this.clearCustomConfigurations(),
1861-
this.handleRemoveAllCodeAnalysisProblems(),
1862+
this.handleRemoveAllCodeAnalysisProblems()]);
1863+
await Promise.all([
18621864
...[...this.trackedDocuments].map(document => this.provideCustomConfiguration(document.uri, undefined, true))
18631865
]);
18641866
}

0 commit comments

Comments
 (0)