Skip to content

Instantly share code, notes, and snippets.

@thatguystone
thatguystone / README.txt
Created June 14, 2012 20:37
connection leaking in urllib3
Required pacakges: gunicorn gevent urllib3
1) Start gunicorn: gunicorn -k gevent -w 9 test:app --access-logfile=-
2) Run the test: python test.py
By the end of the test, there should be 5 connections in the pool (5 False 624 1007), but in reality, it's showing 0 (0 True 5 9)