summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPete Zaitcev <zaitcev@kotori.zaitcev.us>2013-05-10 21:33:17 -0600
committerPete Zaitcev <zaitcev@kotori.zaitcev.us>2013-05-10 21:33:17 -0600
commit3196daf9929eef25d69d47592beef4cd31573b80 (patch)
tree1a427b1505833476817d9c240ba6b9766b0d9aaa /tools
parentfcb3100b7d6870b1ae594a7e3e34fad5db0d1180 (diff)
downloadpython-swiftclient-3196daf9929eef25d69d47592beef4cd31573b80.tar.gz
Eradicate eventlet and fix bug lp:959221
The bug is simple: whenever swift uploads to a Swift with SSL, it uses 100% CPU. It happens because we use HTTPSConnection from eventlet that loops like that, while holding the interpreter lock. Now, it could be fixed in eventlet, but let's try something more natural: drop the eventlet's HTTP client. We do not use green threads in the client anymore, so it's not like we need it for that. Note that in most cases clients do not use the BufferedHTTPConnection either, because it's only installed on Swift server nodes, not on workstations. Get rid of that too. bug: 959221 Change-Id: I1eb932779d4171598b3efaa043f817b9c6c995c4
Diffstat (limited to 'tools')
-rw-r--r--tools/test-requires1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/test-requires b/tools/test-requires
index c578877..66136b0 100644
--- a/tools/test-requires
+++ b/tools/test-requires
@@ -7,7 +7,6 @@ flake8==2.0
coverage
discover
-eventlet
python-keystoneclient
sphinx>=1.1.2
testrepository>=0.0.13