mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #778
efbdde2
Detect map resize failures (Howard Chu)
This commit is contained in:
commit
dea1aa75bc
1 changed files with 3 additions and 1 deletions
|
@ -377,7 +377,9 @@ void BlockchainLMDB::do_resize(uint64_t increase_size)
|
|||
|
||||
mdb_txn_safe::wait_no_active_txns();
|
||||
|
||||
mdb_env_set_mapsize(m_env, new_mapsize);
|
||||
int result = mdb_env_set_mapsize(m_env, new_mapsize);
|
||||
if (result)
|
||||
throw0(DB_ERROR(lmdb_error("Failed to set new mapsize: ", result).c_str()));
|
||||
|
||||
LOG_PRINT_GREEN("LMDB Mapsize increased." << " Old: " << mei.me_mapsize / (1024 * 1024) << "MiB" << ", New: " << new_mapsize / (1024 * 1024) << "MiB", LOG_LEVEL_0);
|
||||
|
||||
|
|
Loading…
Reference in a new issue