mirror of https://gitee.com/bigwinds/arangodb
as per request of @weinberger, add warning on startup when RocksDB engine is automatically selected
This commit is contained in:
parent
1c4beb4c34
commit
0d2d168bf0
|
@ -79,6 +79,7 @@ void EngineSelectorFeature::prepare() {
|
|||
|
||||
if (_engine == "auto") {
|
||||
_engine = defaultEngine();
|
||||
LOG_TOPIC(WARN, Logger::STARTUP) << "using default storage engine '" << _engine << "' as no storage engine was specified via the `--server.storage-engine` option. Note that default storage engine has changed to RocksDB in ArangoDB 3.4.";
|
||||
}
|
||||
|
||||
TRI_ASSERT(_engine != "auto");
|
||||
|
|
Loading…
Reference in New Issue