diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-26 09:08:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 09:08:31 -0400 |
commit | e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29 (patch) | |
tree | 2a31481c55271a98de43e19d5a312cb164b7e810 /cmd | |
parent | ace6672bf1a9b011a3c414783496668b5f27f3eb (diff) | |
parent | d441a711e5590cc579ae0e0a73ea463718d4d79e (diff) | |
download | podman-e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29.tar.gz podman-e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29.tar.bz2 podman-e7c30d855f7c827f3b8f7c9fcf7465a7543e3d29.zip |
Merge pull request #13996 from cdoern/machine
machine starting status
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/machine/inspect.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/machine/inspect.go b/cmd/podman/machine/inspect.go index d43cabf6b..1884cf94d 100644 --- a/cmd/podman/machine/inspect.go +++ b/cmd/podman/machine/inspect.go @@ -59,7 +59,7 @@ func inspect(cmd *cobra.Command, args []string) error { errs = append(errs, err) continue } - state, err := vm.State() + state, err := vm.State(false) if err != nil { errs = append(errs, err) continue |