From a2f406ef49a1e5ec31d90957122e14addf56901c Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Wed, 2 Nov 2011 11:33:37 -0700 Subject: [PATCH] testrados: set CEPH_CLIENT_ID without a ; Signed-off-by: Samuel Just --- teuthology/task/testrados.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/testrados.py b/teuthology/task/testrados.py index fe46d9da81c2c..916ba9b1839f8 100644 --- a/teuthology/task/testrados.py +++ b/teuthology/task/testrados.py @@ -49,7 +49,7 @@ def task(ctx, config): args = [] if not config.get('snaps', False): args = [ - 'CEPH_CLIENT_ID={id_};'.format(id_=id_), + 'CEPH_CLIENT_ID={id_}'.format(id_=id_), 'CEPH_CONF=/tmp/cephtest/ceph.conf', 'LD_PRELOAD=/tmp/cephtest/binary/usr/local/lib/librados.so.2', '/tmp/cephtest/binary/usr/local/bin/testreadwrite', @@ -60,7 +60,7 @@ def task(ctx, config): ] else: args = [ - 'CEPH_CLIENT_ID={id_};'.format(id_=id_), + 'CEPH_CLIENT_ID={id_}'.format(id_=id_), 'CEPH_CONF=/tmp/cephtest/ceph.conf', 'LD_PRELOAD=/tmp/cephtest/binary/usr/local/lib/librados.so.2', '/tmp/cephtest/binary/usr/local/bin/testsnaps', -- 2.39.5