diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-19 22:18:18 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-19 22:18:18 +0100 |
commit | 491eda61e30c90329e18f49499278fe3d7e9ccad (patch) | |
tree | d7bb6c3d9eface9d57cb9e608679b56af9ee2d8c /editors/code/src | |
parent | 1d4388f6bd02e6dda816028f0bdac7b39225ca0b (diff) | |
parent | d6e89244ec46bc4d12388975082beeba85ff0b9b (diff) |
Merge #4955
4955: Update workaround comment r=matklad a=Veetaha
Co-authored-by: Veetaha <[email protected]>
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/net.ts | 5 |
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 | } |