diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-21 11:28:16 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-11 14:43:57 +0000 |
commit | df83d361e4fe3c1fc1939b096cb21aa2e7ec3d74 (patch) | |
tree | 3f4bb6dba3763a5895135fadecc005eeb0ea96ca /libpod/container_top.go | |
parent | fee9ec18584bcc31ce4889bdbda2fc2a829eaf5f (diff) | |
download | podman-df83d361e4fe3c1fc1939b096cb21aa2e7ec3d74.tar.gz podman-df83d361e4fe3c1fc1939b096cb21aa2e7ec3d74.tar.bz2 podman-df83d361e4fe3c1fc1939b096cb21aa2e7ec3d74.zip |
Major fixes to systemd cgroup handling
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #507
Approved by: baude
Diffstat (limited to 'libpod/container_top.go')
-rw-r--r-- | libpod/container_top.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/container_top.go b/libpod/container_top.go index 16030e040..a83303036 100644 --- a/libpod/container_top.go +++ b/libpod/container_top.go @@ -27,9 +27,9 @@ func (c *Container) GetContainerPids() ([]string, error) { // Gets the pids for a container without locking. should only be called from a func where // locking has already been established. func (c *Container) getContainerPids() ([]string, error) { - cgroupPath, err := c.CGroupPath()("") + cgroupPath, err := c.CGroupPath() if err != nil { - return nil, errors.Wrapf(err, "error getting cgroup path for container %s", c.ID()) + return nil, err } taskFile := filepath.Join("/sys/fs/cgroup/pids", cgroupPath, "tasks") |