Merge "update hacking in test-requirements"

This commit is contained in:
Jenkins 2015-11-24 15:38:33 +00:00 committed by Gerrit Code Review
commit 94e101148d
2 changed files with 3 additions and 3 deletions

View File

@ -330,8 +330,8 @@ class DistributedBenchController(object):
eventlet.patcher.monkey_patch(socket=True)
pool = eventlet.GreenPool(size=len(self.clients))
pile = eventlet.GreenPile(pool)
for client in self.clients:
pile.spawn(self.do_run, client)
for c in self.clients:
pile.spawn(self.do_run, c)
results = {
'PUTS': dict(count=0, failures=0, rate=0.0),
'GETS': dict(count=0, failures=0, rate=0.0),

View File

@ -1,4 +1,4 @@
hacking>=0.8.0,<0.9
hacking>=0.10.0,<0.11
coverage>=3.6
discover