From 3d1d21662a251f98377e5687df8e02ee63ad945e Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 6 Oct 2016 13:56:43 -0400 Subject: [PATCH] rocksdb: remove experimental status We've been testing rocksdb on mons in QA for months now with no problems. We've also observed no problems with its use in bluestore. Signed-off-by: Sage Weil (cherry picked from commit 68138893648e052a6549fecf23b0b58af921dfc7) --- src/kv/KeyValueDB.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/kv/KeyValueDB.cc b/src/kv/KeyValueDB.cc index 9437958739ae8..63ac3919b201e 100644 --- a/src/kv/KeyValueDB.cc +++ b/src/kv/KeyValueDB.cc @@ -24,8 +24,7 @@ KeyValueDB *KeyValueDB::create(CephContext *cct, const string& type, } #endif #ifdef HAVE_LIBROCKSDB - if (type == "rocksdb" && - cct->check_experimental_feature_enabled("rocksdb")) { + if (type == "rocksdb") { return new RocksDBStore(cct, dir, p); } #endif -- 2.39.5