diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-24 12:50:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 12:50:59 -0400 |
commit | 2dc4f752c67e8e8c1035d6e2d689779cdc00004b (patch) | |
tree | 69557b4f1002fb85a3cb3c32401adeb7a4484c5b /libpod | |
parent | 7391bdfbbc418adbc85f6643cb67cdbd87fd0b7b (diff) | |
parent | 2400d1d52ff4199778781446445eef39a6e2c6b9 (diff) | |
download | podman-2dc4f752c67e8e8c1035d6e2d689779cdc00004b.tar.gz podman-2dc4f752c67e8e8c1035d6e2d689779cdc00004b.tar.bz2 podman-2dc4f752c67e8e8c1035d6e2d689779cdc00004b.zip |
Merge pull request #14341 from vrothberg/todo-part-1
TODO's and FIXME's [PART 1]
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_top_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_top_linux.go b/libpod/container_top_linux.go index 9b3dbc873..b30e0c732 100644 --- a/libpod/container_top_linux.go +++ b/libpod/container_top_linux.go @@ -96,7 +96,7 @@ func (c *Container) Top(descriptors []string) ([]string, error) { // For more details, please refer to github.com/containers/psgo. func (c *Container) GetContainerPidInformation(descriptors []string) ([]string, error) { pid := strconv.Itoa(c.state.PID) - // TODO: psgo returns a [][]string to give users the ability to apply + // NOTE: psgo returns a [][]string to give users the ability to apply // filters on the data. We need to change the API here // to return a [][]string if we want to make use of // filtering. |