backup/datastore.rs: improve error reporting
This commit is contained in:
parent
9b50c16103
commit
f0a6112451
|
@ -58,13 +58,12 @@ impl DataStore {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Ok(datastore) = DataStore::open(name) {
|
let datastore = DataStore::open(name)?;
|
||||||
|
|
||||||
let datastore = Arc::new(datastore);
|
let datastore = Arc::new(datastore);
|
||||||
map.insert(name.to_string(), datastore.clone());
|
map.insert(name.to_string(), datastore.clone());
|
||||||
return Ok(datastore);
|
|
||||||
}
|
|
||||||
|
|
||||||
bail!("store not found");
|
Ok(datastore)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn open(store_name: &str) -> Result<Self, Error> {
|
pub fn open(store_name: &str) -> Result<Self, Error> {
|
||||||
|
|
Loading…
Reference in New Issue