Skip to content

Commit

Permalink
[qemu] refined the qemu process killing can not finish error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeliao committed Jul 2, 2024
1 parent 4b046c7 commit ca51f37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/platform/backends/qemu/qemu_virtual_machine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,8 @@ void mp::QemuVirtualMachine::shutdown(bool force)
if (vm_process != nullptr && !vm_process->wait_for_finished(kill_process_timeout))
{
throw std::runtime_error{
fmt::format("The QEMU process kill did not finish with {} seconds", kill_process_timeout)};
fmt::format("The QEMU process did not finish within {} seconds after being killed",
kill_process_timeout)};
}
}
else
Expand Down

0 comments on commit ca51f37

Please sign in to comment.