mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
Disable thread local storage for LMDB connection
This commit is contained in:
parent
329d243ccd
commit
0e9461c3b2
2 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ pub enum ErrorKind {
|
|||
#[fail(display = "Invalid TxHashSet: {}", _0)]
|
||||
InvalidTxHashSet(String),
|
||||
/// Internal issue when trying to save or load data from store
|
||||
#[fail(display = "Store Error: {}", _1)]
|
||||
#[fail(display = "Store Error: {}, reason: {}", _1, _0)]
|
||||
StoreErr(store::Error, String),
|
||||
/// Internal issue when trying to save or load data from append only files
|
||||
#[fail(display = "File Read Error: {}", _0)]
|
||||
|
|
|
@ -80,7 +80,7 @@ pub fn new_named_env(path: String, name: String) -> lmdb::Environment {
|
|||
});
|
||||
unsafe {
|
||||
env_builder
|
||||
.open(&full_path, lmdb::open::Flags::empty(), 0o600)
|
||||
.open(&full_path, lmdb::open::NOTLS, 0o600)
|
||||
.unwrap()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue