very smoll tiny fix to be consistent

This commit is contained in:
Ramil_Algayev 2024-12-26 02:04:13 +04:00
parent 29e5de8424
commit b7c2211d32

@ -148,7 +148,7 @@ async fn handle_update_vm_requests(
while let Some(update_vm) = req.recv().await { while let Some(update_vm) = req.recv().await {
let confirmation = UpdateVmResp { let confirmation = UpdateVmResp {
uuid: update_vm.uuid, uuid: update_vm.uuid,
error: "No errors yet".to_string(), error: "".to_string(),
}; };
info!("Sending UpdateVmResp: {confirmation:?}"); info!("Sending UpdateVmResp: {confirmation:?}");
let _ = resp.send(confirmation).await; let _ = resp.send(confirmation).await;