diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-15 15:00:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 15:00:13 -0700 |
commit | c7d17613ec7635413c035e0ed0b8700c56430303 (patch) | |
tree | 2eba4ffc3a0e42b15f28f1e98a12a33c14a224f2 /pkg/domain/entities/container_ps.go | |
parent | 0f7162d791076e736a7cee3a45051925fa4d0589 (diff) | |
parent | 30d2964ff83387e3c3fa7447776c57f4342707e6 (diff) | |
download | podman-c7d17613ec7635413c035e0ed0b8700c56430303.tar.gz podman-c7d17613ec7635413c035e0ed0b8700c56430303.tar.bz2 podman-c7d17613ec7635413c035e0ed0b8700c56430303.zip |
Merge pull request #5827 from baude/v2bloat
v2 bloat pruning phase 2
Diffstat (limited to 'pkg/domain/entities/container_ps.go')
-rw-r--r-- | pkg/domain/entities/container_ps.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/entities/container_ps.go b/pkg/domain/entities/container_ps.go index ceafecebc..33f5d0500 100644 --- a/pkg/domain/entities/container_ps.go +++ b/pkg/domain/entities/container_ps.go @@ -4,8 +4,8 @@ import ( "sort" "strings" - "github.com/containers/libpod/cmd/podman/shared" "github.com/containers/libpod/libpod" + "github.com/containers/libpod/pkg/ps/define" "github.com/cri-o/ocicni/pkg/ocicni" "github.com/pkg/errors" ) @@ -48,7 +48,7 @@ type ListContainer struct { // Port mappings Ports []ocicni.PortMapping // Size of the container rootfs. Requires the size boolean to be true - Size *shared.ContainerSize + Size *define.ContainerSize // Time when container started StartedAt int64 // State of container |