]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/kv/KeyValueDB.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / kv / KeyValueDB.cc
index 7a917b7a1836f1c9304b3d827359671268feaace..30e7e671114473ae206e7a86a7ab607a7fcb4d26 100644 (file)
@@ -15,6 +15,7 @@
 
 KeyValueDB *KeyValueDB::create(CephContext *cct, const string& type,
                               const string& dir,
+                              map<string,string> options,
                               void *p)
 {
 #ifdef WITH_LEVELDB
@@ -30,7 +31,7 @@ KeyValueDB *KeyValueDB::create(CephContext *cct, const string& type,
 #endif
 #ifdef HAVE_LIBROCKSDB
   if (type == "rocksdb") {
-    return new RocksDBStore(cct, dir, p);
+    return new RocksDBStore(cct, dir, options, p);
   }
 #endif