From cc72fe6cf3d7d9f831ca322b061293ce47f8877b Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Fri, 9 Sep 2011 13:22:03 -0700 Subject: [PATCH] Callers of task s3tests.create_users don't need to provide dummy "fixtures" dict. --- teuthology/task/s3tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/task/s3tests.py b/teuthology/task/s3tests.py index 6f10103929..1ba1b09393 100644 --- a/teuthology/task/s3tests.py +++ b/teuthology/task/s3tests.py @@ -51,6 +51,7 @@ def create_users(ctx, config): log.info('Creating rgw users...') for client in config['clients']: s3tests_conf = config['s3tests_conf'][client] + s3tests_conf.setdefault('fixtures', {}) s3tests_conf['fixtures'].setdefault('bucket prefix', 'test-' + client + '-{random}-') for section, user in [('s3 main', 'foo'), ('s3 alt', 'bar')]: _config_user(s3tests_conf, section, '{user}.{client}'.format(user=user, client=client)) -- 2.39.5