-
SummaryI have generics in my handlers to be able to test my routes. Everything fine until this error start to appear. How can I debug the issue? I checked that all of my generics have Send + Sync + 'static but this issue still happens axum version7.5 |
Beta Was this translation helpful? Give feedback.
Answered by
mladedav
Mar 10, 2025
Replies: 1 comment 1 reply
-
I think removing the generics for debug purposes and using You can also manually check that the returned future is |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sergeda
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think removing the generics for debug purposes and using
debug_handler
would be the way to go.You can also manually check that the returned future is
Send
, that's usually the problem.