Diptesh Choudhuri
Diptesh Choudhuri
The problem is, since this is a Dockerfile action, it inherits the permissions from inside the docker container (which happens to be `root` here).
@robi-wan I forked this repo and published the correct fix here: https://github.com/IgnisDa/npm-libs/tree/main/packages/nx-rust. The solution you have posted will work but only for metadata below 50mb. For big projects, it would...
@robi-wan Indeed I have increased the buffer size, but then later I have also parsed the json via streaming. You can see them here https://github.com/IgnisDa/npm-libs/blob/main/packages/nx-rust/src/graph/index.ts#L23-L37. > I think therefore instead...
Hi, any updates on this feature?
Can confirm `headers: { connection: "keep-alive" }` fixes it.
@JesseFarebro The headers need to be set on your side when making the http request. Why can't you set the header?
For me, the issue was fixed by removing the `Redirect` middleware. Might not be ideal for everyone, but worth trying.
@kirawi The above issue runs the LSP inside a container. The feature I want support for runs Helix in the container too. Thus I do not think this is a...
After some hacking, here is the progress I made: - The base image is taken from [this](https://github.com/IgnisDa/developrs/blob/589f510a9ddb44c0adc0f1fb1a4d1d1c2fc60f0b/docker/Dockerfile) branch - The changes required to my existing devcontainer are in [this](https://github.com/IgnisDa/rust-libs/tree/sshd) branch...
I made a pubic gist with info on how to get basic devcontainer support working: https://gist.github.com/IgnisDa/f4c1ffb3b798686df3193a80cbd5b3eb.