Merge pull request #12806 from rhatdan/machine1

It takes some time to start a VM
This commit is contained in:
Daniel J Walsh 2022-01-11 10:22:27 -05:00 committed by GitHub
commit 76212917c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,9 +60,9 @@ func start(cmd *cobra.Command, args []string) error {
if err != nil {
return err
}
fmt.Printf("Starting machine %q\n", vmName)
if err := vm.Start(vmName, machine.StartOptions{}); err != nil {
return err
}
fmt.Printf("Machine %q started successfully\n", vmName)
return nil
}