BlobDB: dump blob db options on open

Summary:
We dump blob db options on blob db open, but it was removed by mistake in #3246. Adding it back.
Closes https://github.com/facebook/rocksdb/pull/3298

Differential Revision: D6607177

Pulled By: yiwu-arbug

fbshipit-source-id: 2a4aacbfa52fd8f1878dc9e1fbb95fe48faf80c0
main
Yi Wu 7 years ago committed by Facebook Github Bot
parent 48cf8da2bb
commit e763e1b623
  1. 1
      utilities/blob_db/blob_db_impl.cc

@ -202,6 +202,7 @@ Status BlobDBImpl::Open(std::vector<ColumnFamilyHandle*>* handles) {
} }
ROCKS_LOG_INFO(db_options_.info_log, "BlobDB pointer %p", this); ROCKS_LOG_INFO(db_options_.info_log, "BlobDB pointer %p", this);
bdb_options_.Dump(db_options_.info_log.get());
return s; return s;
} }

Loading…
Cancel
Save