chore: check datastores not panic

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-23 12:54:08 +01:00
parent 723fbca34e
commit 89c5592606

View File

@ -327,7 +327,7 @@ pub async fn main() -> BxDynResult<()> { //std::io::Result<()> {
let config = Config::new(config_content,debug);
let app_data_conn = AppDataConn::new("Zterton".to_string(),config.datastores_settings.to_owned(),"").await;
if !app_data_conn.check_connections(config.datastores_settings.to_owned()).await {
panic!("Error checking app data store connections");
println!("Error checking app data store connections");
}
if config.run_schedtasks {
for it in &config.schedtasks {