chore: remove channel blocking in qemu launch

The channel is never read from.

Signed-off-by: fazledyn-or <ataf@openrefactory.com>
Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
This commit is contained in:
fazledyn-or 2024-02-01 14:48:48 +06:00 committed by Andrey Smirnov
parent 029d7f7b9b
commit d7d4154d5d
No known key found for this signature in database
GPG Key ID: FE042E3D4085A811

View File

@ -394,6 +394,8 @@ func launchVM(config *LaunchConfig) error {
return fmt.Errorf("failed to kill process %w", err)
}
<-done
return fmt.Errorf("process stopped")
case err := <-done:
if err != nil {