Merge pull request #524
1c8262c
db_bdb: move log_set_config call before open (moneromooo-monero)
This commit is contained in:
commit
8a5ba475cb
@ -780,13 +780,13 @@ void BlockchainBDB::open(const std::string& filename, const int db_flags)
|
|||||||
m_env->set_lk_max_lockers(DB_MAX_LOCKS);
|
m_env->set_lk_max_lockers(DB_MAX_LOCKS);
|
||||||
m_env->set_lk_max_objects(DB_MAX_LOCKS);
|
m_env->set_lk_max_objects(DB_MAX_LOCKS);
|
||||||
|
|
||||||
|
if(m_auto_remove_logs)
|
||||||
|
m_env->log_set_config(DB_LOG_AUTO_REMOVE, 1);
|
||||||
|
|
||||||
// last parameter left 0, files will be created with default rw access
|
// last parameter left 0, files will be created with default rw access
|
||||||
m_env->open(filename.c_str(), db_env_open_flags, 0);
|
m_env->open(filename.c_str(), db_env_open_flags, 0);
|
||||||
m_env->set_flags(db_flags, 1);
|
m_env->set_flags(db_flags, 1);
|
||||||
|
|
||||||
if(m_auto_remove_logs)
|
|
||||||
m_env->log_set_config(DB_LOG_AUTO_REMOVE, 1);
|
|
||||||
|
|
||||||
// begin transaction to init dbs
|
// begin transaction to init dbs
|
||||||
bdb_txn_safe txn;
|
bdb_txn_safe txn;
|
||||||
m_env->txn_begin(NULL, txn, 0);
|
m_env->txn_begin(NULL, txn, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user