Nissl
Nissl
Any progress or idea on how i could fix this? For me the results portion for find_files and live_grep is blank and i get the same warning. nvim --version ```...
> Do you have ripgrep installed? @Nis5l Yes i do, `checkhealth` recognized it as well: ``` # rg --version ripgrep 13.0.0 -SIMD -AVX (compiled) +SIMD +AVX (runtime) ``` For now...
Works as expected now, thank you very much :+1:
For anyone having this problem, I'm currently solving this by pushing the error data onto the [local_cache](https://api.rocket.rs/v0.5-rc/rocket/request/macro.local_cache.html) of the request and reading it at the [catcher](https://api.rocket.rs/v0.5-rc/rocket/struct.Catcher.html). Don't know if its...
I still have this issue, any ideas? uname -a of the docker container its running in: Linux 8c67bee5b8ce 5.4.0-120-generic #136-Ubuntu SMP Fri Jun 10 13:40:48 UTC 2022 x86_64 x86_64 x86_64...
For me the issue still persists on the latest master. [dependencies] #rocket = { version = "0.5.0-rc.2", features = ["json"] } rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master",...
Should be fine, its building inside a docker container like this: ``` FROM rust:1.57.0 as builder WORKDIR server COPY ./Cargo.toml ./Cargo.toml COPY ./src/ ./src/ RUN cargo build --release ``` and...
No, I am not using TLS, the service is running in a docker container behind a reverse proxy. The issue does seem like its the same to me, Rocket stops...
I tried a minimal rocket setup behind the proxy, but it surprisingly stayed up. Now I will try to figure out what part of the initial application causes the problem,...
Have you found any solution?