update hacking in test-requirements

also changed a variable name to pass a new hacking check

Change-Id: Ib64adcc6c986528e619ee42abc21f42f9f2dfbf4
This commit is contained in:
John Dickinson 2015-11-09 15:06:06 -08:00
parent d64b007deb
commit 43dc3dd358
2 changed files with 3 additions and 3 deletions

View File

@ -323,8 +323,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