From 6df4ce5075e2996aa80a5159531fabf5b763171e Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Fri, 30 Dec 2011 12:54:55 -0800 Subject: [PATCH] rados: fix references to testrados --- teuthology/task/rados.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/teuthology/task/rados.py b/teuthology/task/rados.py index eebde3a1d08b1..1e114af475b66 100644 --- a/teuthology/task/rados.py +++ b/teuthology/task/rados.py @@ -12,7 +12,7 @@ def task(ctx, config): The config should be as follows:: - testrados: + rados: clients: [client list] ops: objects: @@ -23,7 +23,7 @@ def task(ctx, config): tasks: - ceph: - - testrados: + - rados: clients: [client.0] ops: 1000 objects: 25 @@ -31,10 +31,10 @@ def task(ctx, config): snaps: true - interactive: """ - log.info('Beginning testrados...') + log.info('Beginning rados...') assert isinstance(config, dict), \ "please list clients to run on" - testrados = {} + tests = {} (mon,) = ctx.cluster.only('mon.0').remotes.iterkeys() remotes = [] @@ -71,14 +71,14 @@ def task(ctx, config): proc = remote.run( args=args, - logger=log.getChild('testrados.{id}'.format(id=id_)), + logger=log.getChild('rados.{id}'.format(id=id_)), stdin=run.PIPE, wait=False ) - testrados[id_] = proc + tests[id_] = proc try: yield finally: - log.info('joining testrados') - run.wait(testrados.itervalues()) + log.info('joining rados') + run.wait(tests.itervalues()) -- 2.39.5