From 3a5b5d04bba49c696b8d95c10978f3aa1c562d04 Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Fri, 23 Sep 2022 11:52:07 -0400 Subject: Fix machine starting state Machine starting now is correctly displayed on podman machine list --format json [NO NEW TESTS NEEDED] Signed-off-by: Ashley Cui --- cmd/podman/machine/list.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/podman/machine/list.go b/cmd/podman/machine/list.go index ddc9ce246..26db5e1a4 100644 --- a/cmd/podman/machine/list.go +++ b/cmd/podman/machine/list.go @@ -177,6 +177,7 @@ func toMachineFormat(vms []*machine.ListResponse) ([]*entities.ListReporter, err response.Port = vm.Port response.RemoteUsername = vm.RemoteUsername response.IdentityPath = vm.IdentityPath + response.Starting = vm.Starting machineResponses = append(machineResponses, response) } -- cgit v1.2.3-54-g00ecf