From 574cfe98abf4d5362164cfdf44f7ada34b221670 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Thu, 16 Jun 2011 11:04:59 -0700 Subject: [PATCH] Remove the "ceph mds set_max_mds" call, apparently it's not needed. We can always re-add it if and when it's useful. --- teuthology/task/ceph.py | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 628677e0046d0..c4e094e034794 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -497,24 +497,6 @@ def task(ctx, config): ) mon_daemons[id_] = proc - log.info('Setting max_mds...') - (mon0_remote,) = ctx.cluster.only('mon.0').remotes.keys() - # TODO where does this belong? - mon0_remote.run( - args=[ - '/tmp/cephtest/binary/usr/local/bin/ceph-coverage', - coverage_dir, - '/tmp/cephtest/binary/usr/local/bin/ceph', - '-c', '/tmp/cephtest/ceph.conf', - '-k', '/tmp/cephtest/ceph.keyring', - 'mds', - 'set_max_mds', - '{num_mds:d}'.format( - num_mds=teuthology.num_instances_of_type(ctx.cluster, 'mds'), - ), - ], - ) - osd_daemons = {} log.info('Starting osd daemons...') osds = ctx.cluster.only(teuthology.is_type('osd')) @@ -561,6 +543,7 @@ def task(ctx, config): log.info('Waiting until ceph is healthy...') + (mon0_remote,) = ctx.cluster.only('mon.0').remotes.keys() teuthology.wait_until_healthy( remote=mon0_remote, ) -- 2.39.5