Improve errors reporting

This commit is contained in:
2023-12-12 13:30:59 +01:00
parent c7f7bfe67c
commit f651c756b6
3 changed files with 19 additions and 5 deletions

View File

@ -44,7 +44,14 @@ pub async fn create(client: LibVirtReq, req: web::Json<VMInfo>) -> HttpResult {
/// Get the list of domains
pub async fn list_all(client: LibVirtReq) -> HttpResult {
let list = client.get_full_domains_list().await?;
let list = match client.get_full_domains_list().await {
Err(e) => {
log::error!("Failed to get the list of domains! {e}");
return Ok(HttpResponse::InternalServerError()
.json(format!("Failed to get the list of domains! {e}")));
}
Ok(l) => l,
};
let mut out = Vec::with_capacity(list.len());
for entry in list {