mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
refactor: Updates Conan dependencies: RocksDB (#5335)
Updates RocksDB to version 9.7.3, the latest version supported in Conan 1.x. A patch for 9.7.4 that fixes a memory leak is included.
This commit is contained in:
@@ -191,8 +191,12 @@ public:
|
||||
|
||||
if (keyValues.exists("bbt_options"))
|
||||
{
|
||||
rocksdb::ConfigOptions config_options;
|
||||
auto const s = rocksdb::GetBlockBasedTableOptionsFromString(
|
||||
table_options, get(keyValues, "bbt_options"), &table_options);
|
||||
config_options,
|
||||
table_options,
|
||||
get(keyValues, "bbt_options"),
|
||||
&table_options);
|
||||
if (!s.ok())
|
||||
Throw<std::runtime_error>(
|
||||
std::string("Unable to set RocksDB bbt_options: ") +
|
||||
|
||||
Reference in New Issue
Block a user