From: Sage Weil Date: Fri, 9 Aug 2013 16:04:25 +0000 (-0700) Subject: admin_socket: split command into multiple arguments X-Git-Tag: 1.1.0~1991 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a0e74a96148d29929eab44d67f964d2b0945a03f;p=teuthology.git admin_socket: split command into multiple arguments We were passing the command as a single string, but that does not work the same way it used to. Signed-off-by: Sage Weil --- diff --git a/teuthology/task/admin_socket.py b/teuthology/task/admin_socket.py index 7b800eef4b..81d75c7235 100644 --- a/teuthology/task/admin_socket.py +++ b/teuthology/task/admin_socket.py @@ -78,8 +78,7 @@ def _socket_command(ctx, remote, socket_path, command, args): '{tdir}/archive/coverage'.format(tdir=testdir), 'ceph', '--admin-daemon', socket_path, - command, - ] + args, + ] + command.split(' ') + args, stdout=json_fp, ) if proc.exitstatus == 0: