about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorVeetaha <veetaha2@gmail.com>2020-06-19 20:52:06 +0300
committerVeetaha <veetaha2@gmail.com>2020-06-19 20:52:06 +0300
commitd6e89244ec46bc4d12388975082beeba85ff0b9b (patch)
treef9dd4af2de664f56f69c15a1d923c7a93c6670a4 /editors/code/src
parent90a5c4626a4c46f7d5973e79dc68ab734d3b9349 (diff)
downloadrust-d6e89244ec46bc4d12388975082beeba85ff0b9b.tar.gz
rust-d6e89244ec46bc4d12388975082beeba85ff0b9b.zip
Update workaround comment
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/net.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/editors/code/src/net.ts b/editors/code/src/net.ts
index 49221393731..f0b0854203b 100644
--- a/editors/code/src/net.ts
+++ b/editors/code/src/net.ts
@@ -124,8 +124,7 @@ async function downloadFile(
     return new Promise<void>(resolve => {
         destFileStream.on("close", resolve);
         destFileStream.destroy();
-
-        // Details on workaround: https://github.com/rust-analyzer/rust-analyzer/pull/3092#discussion_r378191131
-        // 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
     });
 }