Remove unusable/broken RocksDB code and options

The Broker RockSDB data store backend was previously unusable
and broken, so all code and options related to it are now removed.
This commit is contained in:
Jon Siwek 2021-01-11 11:11:13 -08:00
parent 54b52eb197
commit 321a027d07
10 changed files with 12 additions and 73 deletions

View file

@ -252,9 +252,6 @@ void Manager::InitializeBrokerStoreForwarding()
case broker::backend::sqlite:
suffix = ".sqlite";
break;
case broker::backend::rocksdb:
suffix = ".rocksdb";
break;
default:
break;
}
@ -1596,9 +1593,6 @@ detail::StoreHandleVal* Manager::MakeMaster(const string& name, broker::backend
case broker::backend::sqlite:
suffix = ".sqlite";
break;
case broker::backend::rocksdb:
suffix = ".rocksdb";
break;
default:
break;
}