aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-06-19 18:52:06 +0100
committerVeetaha <[email protected]>2020-06-19 18:52:06 +0100
commitd6e89244ec46bc4d12388975082beeba85ff0b9b (patch)
treef9dd4af2de664f56f69c15a1d923c7a93c6670a4 /editors/code/src
parent90a5c4626a4c46f7d5973e79dc68ab734d3b9349 (diff)
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 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}