Is there a limit of requests per connection? #2033
-
Hey all, I'm using https://stackoverflow.com/a/67641667/1077167 For me, it also works to send "Connection: close" every 1000th request to renew the current connection. I've tried to find something about the limit for HTTP requests in Hyper and Axum documentation but didn't find any mention. I also tried to change the limit by using Could someone explain how Axum or Hyper manages this limit? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I'm not aware of such a limit. Feels like it might be the client's fault. Are you able to reproduce it with something like reqwest? You can also try asking in |
Beta Was this translation helpful? Give feedback.
I'm not aware of such a limit. Feels like it might be the client's fault. Are you able to reproduce it with something like reqwest?
You can also try asking in
#hyper
in the tokio discord. axum doesn't itself deal with connections directly, that's all delegated to hyper.