From: Vasu Kulkarni Date: Thu, 26 Jan 2017 21:21:30 +0000 (-0800) Subject: Revert "use the create option during instantiation" X-Git-Tag: v10.2.6~86^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F13106%2Fhead;p=ceph.git Revert "use the create option during instantiation" jewel cephfs still uses old Filesystem initializtion method Signed-off-by: Vasu Kulkarni --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 382120f4de75..315de122217c 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -370,7 +370,9 @@ def build_ceph_cluster(ctx, config): if mds_nodes: log.info('Configuring CephFS...') - ceph_fs = Filesystem(ctx, create=True) + ceph_fs = Filesystem(ctx) + if not ceph_fs.legacy_configured(): + ceph_fs.create() elif not config.get('only_mon'): raise RuntimeError( "The cluster is NOT operational due to insufficient OSDs")