Skip to content

Instantly share code, notes, and snippets.

@hispanic
Created November 26, 2015 12:36
Show Gist options
  • Select an option

  • Save hispanic/fbb79fe8c199151521c9 to your computer and use it in GitHub Desktop.

Select an option

Save hispanic/fbb79fe8c199151521c9 to your computer and use it in GitHub Desktop.
HttpClient Logging - Connection released
Connection [id: 0][route: {}->http://myhost:8080] can be kept alive indefinitely
Connection released: [id: 0][route: {}->http://myhost:8080][total kept alive: 1; route allocated: 1 of 50; total allocated: 1 of 100]
@hispanic
Copy link
Author

Typically seen after a response has been received. A connection to myhost has been opened and released back to (meaning, kept alive in) the connection pool. This will increment the “total kept alive” value. The “total kept alive” value spans across routes.

For more information, please see How to Read HttpClient Logging and Prevent Connection Leaks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment