]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/os/ObjectStore.cc
update sources to v12.1.0
[ceph.git] / ceph / src / os / ObjectStore.cc
index 207472e341c17524ca6cdad312caddc80312e501..93c79667d4f171c3fa18b13e6c8ab6800d0bfccc 100644 (file)
@@ -73,12 +73,10 @@ ObjectStore *ObjectStore::create(CephContext *cct,
     return new MemStore(cct, data);
   }
 #if defined(HAVE_LIBAIO)
-  if (type == "bluestore" &&
-      cct->check_experimental_feature_enabled("bluestore")) {
+  if (type == "bluestore") {
     return new BlueStore(cct, data);
   }
-  if (type == "random" &&
-      cct->check_experimental_feature_enabled("bluestore")) {
+  if (type == "random") {
     if (rand() % 2) {
       return new FileStore(cct, data, journal, flags);
     } else {