Improve errors reporting

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

View File

@ -35,9 +35,16 @@ pub async fn create(client: LibVirtReq, req: web::Json<NetworkInfo>) -> HttpResu
/// Get the list of networks /// Get the list of networks
pub async fn list(client: LibVirtReq) -> HttpResult { pub async fn list(client: LibVirtReq) -> HttpResult {
let networks = client let networks = match client.get_full_networks_list().await {
.get_full_networks_list() Err(e) => {
.await? log::error!("Failed to get the list of networks! {e}");
return Ok(HttpResponse::InternalServerError()
.json(format!("Failed to get the list of networks! {e}")));
}
Ok(l) => l,
};
let networks = networks
.into_iter() .into_iter()
.map(|n| NetworkInfo::from_xml(n).unwrap()) .map(|n| NetworkInfo::from_xml(n).unwrap())
.collect::<Vec<_>>(); .collect::<Vec<_>>();

View File

@ -44,7 +44,14 @@ pub async fn create(client: LibVirtReq, req: web::Json<VMInfo>) -> HttpResult {
/// Get the list of domains /// Get the list of domains
pub async fn list_all(client: LibVirtReq) -> HttpResult { 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()); let mut out = Vec::with_capacity(list.len());
for entry in list { for entry in list {

View File

@ -51,7 +51,7 @@ export function AlertDialogProvider(p: PropsWithChildren): React.ReactElement {
<DialogContent> <DialogContent>
<DialogContentText <DialogContentText
id="alert-dialog-description" id="alert-dialog-description"
style={{ whiteSpace: "pre" }} style={{ whiteSpace: "pre-line" }}
> >
{message} {message}
</DialogContentText> </DialogContentText>