Disable thread local storage for LMDB connection

This commit is contained in:
hashmap
2019-01-24 13:20:40 +01:00
parent 329d243ccd
commit 0e9461c3b2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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)]
+1 -1
View File
@@ -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()
}
}