]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
test/admin_socket/objecter_requests: fix test
authorSage Weil <sage@inktank.com>
Sun, 16 Jun 2013 23:42:27 +0000 (16:42 -0700)
committerSage Weil <sage@inktank.com>
Sun, 16 Jun 2013 23:42:27 +0000 (16:42 -0700)
Commit 2bda9db1c24530cbaaa161b7ff0a80efa913aa78 added command_ops
to the result.

Signed-off-by: Sage Weil <sage@inktank.com>
src/test/admin_socket/objecter_requests

index bd09d9ba1d5853a070b6a287b1005f4447ca1674..8083dcafe88d2a2043d248a299367fb0354d0575 100755 (executable)
@@ -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'])