Yann Simon
Yann Simon
For people who would like starting contributing, it can be a nice way to add tests for one example. Step by step, we could reach completion.
@wordrak thanks a lot for the PR. To help me reviewing this, could you explain more what the actual issue is?
instead of creating the term `derive.SuperBanana` that is failing: ``` [error] /Users/yannsimon/projects/sangria-graphql/sangria/modules/derivation/src/test/scala/sangria/macros/derive/DeriveEnumTypeMacroSpec.scala:55:48: not found: value derive [error] val singletonEnum = deriveEnumType[Fruit]() [error] ^ ``` we now create the term `SuperBanana`.
Thanks a lot!
I'm trying to understand your needs. Could you maybe provide some code? There's an example in the tests how to route a request using a `&mut MethodRouter`: https://github.com/tokio-rs/axum/blob/280d16a61059f57230819a79b15aa12a263e8cca/axum/src/routing/method_routing.rs#L1609-L1631 I guess...
I've tried to reproduce your example, but I'm missing some types, and guessing has not helped for now. Maybe you could provide a complete example that compiles. My last state:...
thanks a lot. I've reproduced your case in the axum repo, and tried to use `call_with_state` to avoid the mutable reference: https://github.com/tokio-rs/axum/compare/reproduce_issue_3004?expand=1 But this still cannot work. It's not possible...
In case of HTTP 1.1, what happens if the `content-length` is present, and if the client sends a body with another length. Is this can be used as attack? Does...
> If the users send less bytes and they do not collect the body Do you mean: "if the users send less bytes, and the application do not collect the...
> > if user B is using the same connection, it could be possible for user B to hijack the first request and sends some bytes into it? > >...