diff options
author | Sage Weil <sage@inktank.com> | 2013-06-16 16:42:27 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-06-16 16:42:27 -0700 |
commit | 8d9272ec483a4072c202f2fc358e27afa7d73d2b (patch) | |
tree | 546d01644da66daf6998517e43eaf554dedcad33 | |
parent | efebdba0119f3ac361448924258e263e8c9dbdff (diff) | |
download | ceph-8d9272ec483a4072c202f2fc358e27afa7d73d2b.tar.gz |
test/admin_socket/objecter_requests: fix test
Commit 2bda9db1c24530cbaaa161b7ff0a80efa913aa78 added command_ops
to the result.
Signed-off-by: Sage Weil <sage@inktank.com>
-rwxr-xr-x | src/test/admin_socket/objecter_requests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/admin_socket/objecter_requests b/src/test/admin_socket/objecter_requests index bd09d9ba1d5..8083dcafe88 100755 --- a/src/test/admin_socket/objecter_requests +++ b/src/test/admin_socket/objecter_requests @@ -13,7 +13,7 @@ def main(): read = sys.stdin.read() reqs = json.loads(read) - op_types = ['linger_ops', 'ops', 'pool_ops', 'pool_stat_ops', 'statfs_ops'] + op_types = ['linger_ops', 'ops', 'pool_ops', 'pool_stat_ops', 'statfs_ops', 'command_ops'] assert sorted(reqs.keys()) == sorted(op_types) found_error = check_osd_ops(reqs['ops'] + reqs['linger_ops']) |