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.
2 parents 1d4388f + d6e8924 commit 491eda6Copy full SHA for 491eda6
editors/code/src/net.ts
@@ -124,8 +124,7 @@ async function downloadFile(
124
return new Promise<void>(resolve => {
125
destFileStream.on("close", resolve);
126
destFileStream.destroy();
127
-
128
- // Details on workaround: https://github.com/rust-analyzer/rust-analyzer/pull/3092#discussion_r378191131
129
- // Issue at nodejs repo: https://github.com/nodejs/node/issues/31776
+ // This workaround is awaiting to be removed when vscode moves to newer nodejs version:
+ // https://github.com/rust-analyzer/rust-analyzer/issues/3167
130
});
131
}
0 commit comments