diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-07-13 16:35:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-13 16:35:05 -0400 |
commit | 4729fd425588e17eff4f575d433f1075d4e27bb4 (patch) | |
tree | e7727035759b5c7aa08a745a2f87ae0fd4e546af /pkg/varlinkapi/util.go | |
parent | a689639a6502bab3f49b853bc2983c1b44363b2f (diff) | |
parent | 259136c36c89cb32e28edfe8b5d7a3c1082fad5b (diff) | |
download | podman-4729fd425588e17eff4f575d433f1075d4e27bb4.tar.gz podman-4729fd425588e17eff4f575d433f1075d4e27bb4.tar.bz2 podman-4729fd425588e17eff4f575d433f1075d4e27bb4.zip |
Merge pull request #1089 from mheon/add_exited
Record whether the container has exited
Diffstat (limited to 'pkg/varlinkapi/util.go')
-rw-r--r-- | pkg/varlinkapi/util.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkg/varlinkapi/util.go b/pkg/varlinkapi/util.go index 25ab59801..ad5c8c19d 100644 --- a/pkg/varlinkapi/util.go +++ b/pkg/varlinkapi/util.go @@ -65,13 +65,15 @@ func makeListContainer(containerID string, batchInfo batchcontainer.BatchContain Runningfor: time.Since(batchInfo.ConConfig.CreatedTime).String(), Status: batchInfo.ConState.String(), Ports: ports, - Rootfssize: batchInfo.RootFsSize, - Rwsize: batchInfo.RwSize, Names: batchInfo.ConConfig.Name, Labels: batchInfo.ConConfig.Labels, Mounts: mounts, Containerrunning: batchInfo.ConState == libpod.ContainerStateRunning, Namespaces: namespace, } + if batchInfo.Size != nil { + lc.Rootfssize = batchInfo.Size.RootFsSize + lc.Rwsize = batchInfo.Size.RwSize + } return lc } |