From 7592519801fec2274f86e86e218b411f1e798ce6 Mon Sep 17 00:00:00 2001 From: Eric Meisel Date: Fri, 31 May 2024 13:31:59 -0500 Subject: [PATCH] Update README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5362bc1..406391b 100644 --- a/README.md +++ b/README.md @@ -90,4 +90,14 @@ Error in `Log(Extension Host)` channel: at Pipe.onStreamRead (node:internal/stream_base_commons:190:23) ``` -This happens because the extension exchange with the language server via std in/out of the child process. If any of the code that runs in the language server prints to the standard out, VS Code will complain (unless it is specifically formatted that way). \ No newline at end of file +This happens because the extension exchange with the language server via std in/out of the child process. If any of the code that runs in the language server prints to the standard out, VS Code will complain (unless it is specifically formatted that way). + +Error in `Log(Remote Extension Host)` channel when downloading Coursier: + +``` +Failed to establish a socket connection to proxies extension +``` + +This happens when using the extension in a remote environment (e.g. devcontainers), and the proxy support is set to `override`. This can be resolved by setting this to `off`. + +See this related [github issue](https://github.com/microsoft/vscode-pull-request-github/issues/4624#issuecomment-1845285077) for more information.