Replies: 3 comments 8 replies
-
Nope axum doesn't add any such middleware by default. Its hard to say without seeing the code. Are you able to make a minimal reproduction script that I can |
Beta Was this translation helpful? Give feedback.
-
Ok the most simplest code (awaiting a sleep or a blocking sleep) does not reproduce this. |
Beta Was this translation helpful? Give feedback.
-
I'm observing the same behaviour (3 retries) when trying to access a handler with |
Beta Was this translation helpful? Give feedback.
-
I have an endpoint that does some heavy data gathering. When i call the endpoint once, i see the endpoint tracing three calls that are invoked exactly after one minute. And then curl times out after 3 minutes. My endpoint itself is not timing out, it never reaches the end. Also my metric middleware does not add any metric, meaning the inner call never succeeded or failed.
My conclusion is, this must be happening somewhere before that. I tried to look through the code but did not yet find anything. I'm not even sure if this relates to
axum
,hyper
or eventower
.But something is going on that i would like to control from
axum
. Maybe somewhere a budget is added?Any help or pointing to where some retry layer is added is appreciated.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions