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 e3f59aa commit e3e37b5Copy full SHA for e3e37b5
Extension/src/LanguageServer/client.ts
@@ -2320,11 +2320,10 @@ export class DefaultClient implements Client {
2320
2321
// Don't cancel if the result has already been computed, because the result might still be usable
2322
// without needing to send an unnecessary re-request, which is the case for the callback to registerRelatedFilesProvider.
2323
- /*
2324
if (token.isCancellationRequested) {
2325
- throw new vscode.CancellationError();
+ return result;
+ // throw new vscode.CancellationError();
2326
}
2327
- */
2328
2329
return result;
2330
0 commit comments