Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

http: client keep-alive for UNIX domain sockets #13214

Closed
wants to merge 2 commits into from

Commits on Sep 23, 2017

  1. http: client keep-alive for UNIX domain sockets

    Makes `Connection: keep-alive` behave correctly when making client
    connections to UNIX domain sockets.
    
    Prior to this, connections would never be re-used, but the keep-alive
    would cause the connections to stick around until they time out. This
    would lead to an eventual EMFILE error due to all the connections
    staying open. This was due to http.Agent not properly supporting UNIX
    domain sockets.
    bengl committed Sep 23, 2017
    Configuration menu
    Copy the full SHA
    d93aa85 View commit details
    Browse the repository at this point in the history
  2. [squash] the nits

    bengl committed Sep 23, 2017
    Configuration menu
    Copy the full SHA
    2da5453 View commit details
    Browse the repository at this point in the history