From 6a6f79324d5bad9fba975843b8246ae950e43a76 Mon Sep 17 00:00:00 2001 From: Vikhyat Umrao Date: Wed, 13 Jan 2016 16:36:23 +0530 Subject: [PATCH] [RM-14355] Remove "filestore xattr use omap = true" This patch removes option "filestore_xattr_use_omap" from default ceph.conf global section, as this option was removed in #7408. Cleanup #14355 Signed-off-by: Vikhyat Umrao --- ceph_deploy/new.py | 3 --- ceph_deploy/tests/test_cli_new.py | 1 - 2 files changed, 4 deletions(-) diff --git a/ceph_deploy/new.py b/ceph_deploy/new.py index 359f6bf..7f308d4 100644 --- a/ceph_deploy/new.py +++ b/ceph_deploy/new.py @@ -190,9 +190,6 @@ def new(args): cfg.set('global', 'auth service required', 'cephx') cfg.set('global', 'auth client required', 'cephx') - # http://tracker.newdream.net/issues/3138 - cfg.set('global', 'filestore xattr use omap', 'true') - path = '{name}.conf'.format( name=args.cluster, ) diff --git a/ceph_deploy/tests/test_cli_new.py b/ceph_deploy/tests/test_cli_new.py index cdd2ae6..809709c 100644 --- a/ceph_deploy/tests/test_cli_new.py +++ b/ceph_deploy/tests/test_cli_new.py @@ -68,4 +68,3 @@ def test_defaults(newcfg): assert cfg.get('global', 'auth cluster required') == 'cephx' assert cfg.get('global', 'auth service required') == 'cephx' assert cfg.get('global', 'auth client required') == 'cephx' - assert cfg.get('global', 'filestore_xattr_use_omap') == 'true' -- 2.47.3