Results 777 comments of Asher

@lokomass could you try 4.104.0? There was an issue with the default Open VSX marketplace that was fixed. For me, 4.104.0 is still broken with Apache, but maybe for you...

Thanks y'all for testing the latest version. We will have to investigate the Apache issue further 😕

Watch out for extensions that have multiple platforms, you could pull off the wrong one: ``` $ curl https://open-vsx.org/api/rust-lang/rust-analyzer/latest | jq -r '.files.download' https://open-vsx.org/api/rust-lang/rust-analyzer/alpine-x64/0.4.2638/file/[email protected] ``` You might want something like:...

I have not had a chance to look at this again unfortunately.

Interesting, apparently npm 9 no longer allows setting that option. It seems now it has to be done with `export npm_config_python=/path/to/executable/python`. I am not sure that will fix the problem,...

How are you setting the proxy for VS Code? Using the `http.proxy` setting?

When you run cURL is it using the proxy as well? Do you get a response back for `curl --proxy http://IP:PORT https://my-coder-domain/api/v2/buildinfo`? Are you able to get any logs from...

Hmmmm interesting that the CONNECT seems to be missing in the tcp trace. One thing you could try is to update to 1.2.1 and set `http.proxySupport` to either `on` or...

> but, wondering that why coder extension is making query to get https://myurl.coder.domain/api/v2/users/me because, It should go for authentication first. What do you mean by "go for authentication first"? We...

In the first snippet there is no agent so it makes sense that it would fail. We use `new ProxyAgent()` when a proxy is configured (either through settings or environment...