Hi,
I'm implementing a basic REST API application using litestar that is served by hypercorn (I need HTTP2 support).
To ease explaination of my issue, I added in my code a straightforward route handler to manage a POST on /echo. The handler replies with the content of the request body.
I have a strange behavior where the server replies always to any requests with the body of the first request sent. In the client side, I send a counter starting at 0. So in my example, the print always outputs "{'test': 0}" even if the request contains something else. It seems that the handler is not updated with the latest request.
For the sake of completeness, my client establishes a connection with my server and use the same connection to send requests.
Information:
Litestar: 2.14.0
Hypercorn: 0.17.3
Thanks for your help