diff --git a/vmm/src/api/http/mod.rs b/vmm/src/api/http/mod.rs index 7d63ec60d3..e326bee3b1 100644 --- a/vmm/src/api/http/mod.rs +++ b/vmm/src/api/http/mod.rs @@ -421,8 +421,9 @@ impl HttpWorkerThreads { // Notify the HTTP server thread. response_event.write(1).ok(); } - Err(e) => { - error!("HTTP worker thread {id}: error receiving request {e}"); + Err(_) => { + // We assume that the other side of the channel + // closed because the VMM received a shutdown request. break; } }