diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-16 09:46:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 09:46:28 -0500 |
commit | 58a4793bec30058f648dcd1248da333a7bb6d47c (patch) | |
tree | de220666eba07d3183e95299bb1485ffe5f383d3 /pkg/domain/entities | |
parent | aadb16da383a91489821969247bced2b34d885e7 (diff) | |
parent | 4a9bd7a18f2db7db103a94287ef34cbd1be1626b (diff) | |
download | podman-58a4793bec30058f648dcd1248da333a7bb6d47c.tar.gz podman-58a4793bec30058f648dcd1248da333a7bb6d47c.tar.bz2 podman-58a4793bec30058f648dcd1248da333a7bb6d47c.zip |
Merge pull request #9396 from rhatdan/stop
When stopping a container, print rawInput
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/containers.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 2d50d6826..b89c42eab 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -88,8 +88,9 @@ type StopOptions struct { } type StopReport struct { - Err error - Id string //nolint + Err error + Id string //nolint + RawInput string } type TopOptions struct { |