aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 492213937..f0b085420 100644
--- a/editors/code/src/net.ts
+++ b/editors/code/src/net.ts
@@ -124,8 +124,7 @@ async function downloadFile(
124 return new Promise<void>(resolve => { 124 return new Promise<void>(resolve => {
125 destFileStream.on("close", resolve); 125 destFileStream.on("close", resolve);
126 destFileStream.destroy(); 126 destFileStream.destroy();
127 127 // This workaround is awaiting to be removed when vscode moves to newer nodejs version:
128 // Details on workaround: https://github.com/rust-analyzer/rust-analyzer/pull/3092#discussion_r378191131 128 // https://github.com/rust-analyzer/rust-analyzer/issues/3167
129 // Issue at nodejs repo: https://github.com/nodejs/node/issues/31776
130 }); 129 });
131} 130}