diff options
author | Matej Vasek <mvasek@redhat.com> | 2021-02-01 21:23:44 +0100 |
---|---|---|
committer | Matej Vasek <mvasek@redhat.com> | 2021-02-03 21:49:09 +0100 |
commit | fc385806dfe1d13a7d4e4bdaeea93a22a55bd3d4 (patch) | |
tree | 1551262302d3cf31740cfd3474d150e1c2b21422 /pkg/domain/entities | |
parent | 570e1587dde267adea7fe460086dffee6aec83a4 (diff) | |
download | podman-fc385806dfe1d13a7d4e4bdaeea93a22a55bd3d4.tar.gz podman-fc385806dfe1d13a7d4e4bdaeea93a22a55bd3d4.tar.bz2 podman-fc385806dfe1d13a7d4e4bdaeea93a22a55bd3d4.zip |
Improve ContainerEngine.ContainerWait()
Signed-off-by: Matej Vasek <mvasek@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/containers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 63be5578f..2d50d6826 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -51,7 +51,7 @@ type ContainerRunlabelReport struct { } type WaitOptions struct { - Condition define.ContainerStatus + Condition []define.ContainerStatus Interval time.Duration Latest bool } |