Sergio Benitez
Sergio Benitez
Can you run the application with debug logging on (`ROCKET_LOG_LEVEL=debug`) and report the logs?
Thank you for the logs. I've just pushed a commit that completely reworks the TLS connection implementation. I believe this reworked implementation as well as other relevant upstream fixes may...
> > Would you be able to test against the latest tip? > > > > Yes, I will do so. I'll need a few days though, it's a bit...
@Nis5l It doesn't look like you're using TLS, which is what this issue was originally about. Or are you perhaps using TLS via sqlx? Nevertheless, is your issue the same,...
> Another workaround might be to mount everything in the rocket application starting at "/live-coding/" (thus matching the client's perceived path), and proxy_pass http://localhost:8000/live-coding/. You'd still have to manually pass...
@jonhoo To accomplish that, instead of defining a `const`, use something like a global [`state::Storage`](https://docs.rs/state/0.4.1/state/struct.Storage.html) coupled with an attach fairing that reads the configuration parameter at launch and sets the...
We don't consider these bugs, but if we can improve codegen to prevent these lints from triggering, then great! Please feel free to send a PR. I would suggest running...
> > We don't consider these bugs > > > > Agreed, it's technically not a bug. But it's terrible macro hygiene. Your generated code shouldn't trigger lints in my...
We won't get this in for `0.5`. Pushing to `0.6`.
All of these cases can be easily implemented via custom `FromParam` implementations. With [const generics](https://github.com/rust-lang/rfcs/pull/2000), we could even have generic implementations. For instance, you could have an `Ext` type that...