chore: fix error if no id

This commit is contained in:
Jesús Pérez Lorenzo 2021-10-19 20:57:26 +01:00
parent 7f15375e44
commit 6469d0e041

View File

@ -90,6 +90,7 @@ impl AppDataConn {
pub async fn new(name: String, stores_settings: Vec<StoreSettings>, key: &str) -> Self {
let mut datastores: HashMap<String,DataPool> = HashMap::new();
for settings in stores_settings.iter() {
if !settings.id.is_empty() { // && datastores_settings.len() == 1usize {
match settings.datastore {
DataStore::Redis => {
datastores.insert(
@ -118,6 +119,7 @@ impl AppDataConn {
_ => continue,
};
}
}
Self {
name,
datastores,
@ -174,6 +176,9 @@ impl AppDataConn {
let debug = envmnt::get_isize("DEBUG",0);
let mut status = false;
for con in &datastores_settings {
if con.id.is_empty() { // && datastores_settings.len() == 1usize {
status = true;
} else {
match con.datastore {
DataStore::Redis => {
status = match self.get_redis(&con.id).await {
@ -198,6 +203,7 @@ impl AppDataConn {
}
};
}
}
status
}
}