X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Fos%2FObjectStore.cc;h=93c79667d4f171c3fa18b13e6c8ab6800d0bfccc;hb=31f18b776d001752a193a7cec8bb49033c1a904c;hp=207472e341c17524ca6cdad312caddc80312e501;hpb=40152f1e46a80b3405e5558a442ee632198dfd24;p=ceph.git diff --git a/ceph/src/os/ObjectStore.cc b/ceph/src/os/ObjectStore.cc index 207472e34..93c79667d 100644 --- a/ceph/src/os/ObjectStore.cc +++ b/ceph/src/os/ObjectStore.cc @@ -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 {