From: Josh Durgin Date: Fri, 30 Dec 2011 21:53:45 +0000 (-0800) Subject: rados: remove unused variable X-Git-Tag: 1.1.0~2695 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=932257fb6ed7dae6457bed7648cc7f59a751a653;p=teuthology.git rados: remove unused variable --- diff --git a/teuthology/task/rados.py b/teuthology/task/rados.py index a299a0440..575f3ae04 100644 --- a/teuthology/task/rados.py +++ b/teuthology/task/rados.py @@ -60,15 +60,12 @@ def task(ctx, config): ) (mon,) = ctx.cluster.only('mon.0').remotes.iterkeys() - remotes = [] for role in config.get('clients', ['client.0']): assert isinstance(role, basestring) PREFIX = 'client.' assert role.startswith(PREFIX) id_ = role[len(PREFIX):] (remote,) = ctx.cluster.only(role).remotes.iterkeys() - remotes.append(remote) - proc = remote.run( args=['CEPH_CLIENT_ID={id_}'.format(id_=id_)] + args, logger=log.getChild('rados.{id}'.format(id=id_)),