switch back to rocksdb by default

This commit is contained in:
Scott E. Graves 2024-12-09 11:53:23 -06:00
parent 06380ccc58
commit 2ff18fe98d

View File

@ -29,6 +29,6 @@
namespace repertory { namespace repertory {
auto create_file_mgr_db(const app_config &cfg) auto create_file_mgr_db(const app_config &cfg)
-> std::unique_ptr<i_file_mgr_db> { -> std::unique_ptr<i_file_mgr_db> {
return std::make_unique<sqlite_file_mgr_db>(cfg); return std::make_unique<rdb_file_mgr_db>(cfg);
} }
} // namespace repertory } // namespace repertory