diff options
author | Urvashi Mohnani <umohnani@redhat.com> | 2022-05-25 15:41:00 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-06-14 14:32:03 -0400 |
commit | 3188703d3399d54b2a8144710d15f0db3593ba0a (patch) | |
tree | d2c9d8eaab643c897df0cd39cec7bec24f1e221d /cmd/podman | |
parent | 4588a29be68afcab4a89cc2cf6859e77de22e519 (diff) | |
download | podman-3188703d3399d54b2a8144710d15f0db3593ba0a.tar.gz podman-3188703d3399d54b2a8144710d15f0db3593ba0a.tar.bz2 podman-3188703d3399d54b2a8144710d15f0db3593ba0a.zip |
Remove TODO from pods/ps.go
The TODO has already been fixed. Filters is now a []string
[NO NEW TESTS NEEDED]
Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/pods/ps.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/podman/pods/ps.go b/cmd/podman/pods/ps.go index 1275e65dc..66081b10e 100644 --- a/cmd/podman/pods/ps.go +++ b/cmd/podman/pods/ps.go @@ -49,7 +49,6 @@ func init() { flags.BoolVar(&psInput.CtrNames, "ctr-names", false, "Display the container names") flags.BoolVar(&psInput.CtrIds, "ctr-ids", false, "Display the container UUIDs. If no-trunc is not set they will be truncated") flags.BoolVar(&psInput.CtrStatus, "ctr-status", false, "Display the container status") - // TODO should we make this a [] ? filterFlagName := "filter" flags.StringSliceVarP(&inputFilters, filterFlagName, "f", []string{}, "Filter output based on conditions given") |