Petr Bartoň
Petr Bartoň
Unfortunately I don't see any difference between this version and the original one. It happened to me randomly that maybe 1 in 10 try finished as expected (2 responses after...
is there any chance to merge it? :slightly_smiling_face: or is it waiting for the refactor? can I help with some testing, rebasing or coding? It's not exactly clear to me...
hello @SuperQ are you still working on this repo? It would be useful for us to merge it. I can do some changes if needed. We are currently making custom...
thanks, here it is. I will also update the src in the first post to you can eventually see where I put the logs ``` CLIENT: request_id: 64 - start:...
Actually I noticed it in production and I tried to reduce it to as small example as possible. I was debugging why some requests are slower during heavy load and...
Thank you Jonas for the thorough investigation. I need to check the content-lenght. It's a customer facing api and also it's behind few proxies so it can be even getting...
I was also testing the Content-Length header but it still doesn't work for me I tried these cases ```python requests.get(f"http://localhost:8080/request_id={request_id}", headers={"Content-Length": "0"}) requests.post(f"http://localhost:8080/request_id={request_id}", data="data") requests.post(f"http://localhost:8080/request_id={request_id}", data="data", headers={"Content-Length": "4"}) ``` the...
ah :facepalm: well that makes much more sense now. I was just confused. anyway it seems like it helps just partly. When it's added to the response it sometimes passes,...
No just the example application. I will check the behavior of the real app later today
so I checked our real api and the content length is usually around 100-1000, depending on the endpoint. But anyway, the content-length header is present in the response. We are...