Files
requests3/requests
Ian Cordasco c69e3eed31 Close and then release the connection
urllib3 closes the underlying connection when we call
urllib3.Response.close but does not release it back to the connection
pool. This can cause issues when users have a blocking connection pool
configured and connections are not readily returned to the pool.

Since the underlying connection is closed, we should be able to safely
return the connection to the connection pool, so to fix this issue we
merely need to not return after closing the response.

Closes gh-3461
2016-07-30 07:16:18 -05:00
..
2016-04-29 18:11:17 -04:00
2016-07-20 10:30:08 -06:00
2015-10-08 08:09:53 +01:00
2016-07-20 10:30:08 -06:00