try to improve error messages

This commit is contained in:
Dietmar Maurer
2018-12-19 13:40:26 +01:00
parent eae8aa3aa9
commit 277fc5a3ce
3 changed files with 27 additions and 18 deletions

View File

@ -20,7 +20,7 @@ impl DataStore {
let path = store_config["path"].as_str().unwrap();
let chunk_store = ChunkStore::open(path)?;
let chunk_store = ChunkStore::open(store_name, path)?;
Ok(Self {
chunk_store: chunk_store,