https://gist.github.com/TvdW/f4815f8080d9dc30daa5d74b1f878dae
There's a nginx server running on 127.0.0.1, listening on port 80 for http/1.1, and on port 81 for http/2 (no TLS on either). I guess a simple nginx config to reproduce would be along the lines of
server {
listen *:80;
root /var/empty;
location / { }
}
server {
listen *:81 http2;
root /var/empty;
location / { }
}
Full log: https://gist.github.com/TvdW/37f7e01bf7b3b8763557d0a1c204379f
Seems to be a new bug in 7.65.0, 7.64.1 did not have it.
(This was originally reported as #3951 but I accidentally stumbled upon a different bug while minimizing the test case and reported that bug instead.)
Thanks for keeping me busy! :grin:
I can reproduce the (unexpected) timeout. It seems to always be one of the h1 requests...
~~~
Most helpful comment
Thanks for keeping me busy! :grin: