Open
Description
retryablehttp version:
latest
Current Behavior:
When http.Transport
has DisableKeepAlives: true
the host https://89.28.157.20/index.action
doesn't respond:
$ echo https://89.28.157.20/index.action | go run . -timeout 30 -v -silent
Expected Behavior:
$ echo https://89.28.157.20/index.action | go run . -timeout 30 -v -silent
https://89.28.157.20/index.action
Steps To Reproduce:
$ echo https://89.28.157.20/index.action | httpx -timeout 30 -v -silent
Notes
Possible approaches to minimize the occurrences:
- Attempt client side upgrade to http2 (via
Transport: &http.Transport{ForceAttemptHTTP2: true}}
as HTTP2 doesn't use such headers https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive)