Damir Vandic
Damir Vandic
This is because of the `Acquire::http::AllowRedirect=false` you probably have set, i hit this as well.
I think I found the issue: https://github.com/karolsluszniak/ex_check/blob/master/lib/ex_check/check/compiler.ex#L17-L20 When retrying, this expression is `{:disabled, :compiler}` so it falls back to `mix compile` without env?
@lpil the prepared statement stuff was a bit more work and I see now that #13 is there. So this PR just adds a new query function that returns the...
> Sorry, I'm a bit confused, this doesn't seem to do what the issue asked for? Yes, you're right, it does not, I'll keep the issue open. However, this PR...
Was there a reason you left out prepared statements from the API? Is that the preferred approach for this feature or did you have something else in mind? Like query_with_metadata?
> No reason, and I don't have any ideas. Cool, then I'll see if we can have a prepared statement api that covers both esqlite and the deno library!
I was literally just now searching for a solution to this problem 😄 I found this project, which might be interesting: https://github.com/zefchain/serde-reflection/tree/main/serde-generate
We've also encountered this issue, we are using this in our Dockerfile to install a specific version: ```Dockerfile ENV CHROME_VERSION=126.0.6478.182-1 RUN apt update && apt install -y --no-install-recommends \ apt-transport-https...