From ddc1ab0c03fa34e538d05d9d53448b408f393ecc Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Thu, 16 Feb 2012 16:10:45 -0800 Subject: [PATCH] rados.py: include setattr and rmattr Signed-off-by: Samuel Just --- teuthology/task/rados.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/rados.py b/teuthology/task/rados.py index a976f3bc7ba..bffcf5bdc64 100644 --- a/teuthology/task/rados.py +++ b/teuthology/task/rados.py @@ -63,6 +63,8 @@ def task(ctx, config): '--op', 'snap_create', str(op_weights.get('snap_create', 0)), '--op', 'snap_remove', str(op_weights.get('snap_remove', 0)), '--op', 'rollback', str(op_weights.get('rollback', 0)), + '--op', 'setattr', str(op_weights.get('setattr', 0)), + '--op', 'rmattr', str(op_weights.get('rmattr', 0)), '--max-ops', str(config.get('ops', 10000)), '--objects', str(config.get('objects', 500)), '--max-in-flight', str(config.get('max_in_flight', 16)),