mirror of
https://github.com/docker/cli.git
synced 2026-01-23 15:21:32 +03:00
Go's net/http API does not send headers until the first call to ResponseWriter.Write(). Ordinarily, this is fine, because in most cases, responses are returned immediately. However, for the events API, nothing is written until some event is sent, which causes timeouts and/or hangs in some HTTP client APIs, which wait for headers before returning from the "make request" call. Upstream-commit: dd9f4524d1a829a394f5d96da0c1e6338c476019 Component: engine