summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrvashi Mohnani <umohnani@redhat.com>2022-05-25 15:41:00 -0400
committerUrvashi Mohnani <umohnani@redhat.com>2022-05-26 11:03:45 -0400
commit32aa12a285e160748c8e1f88f859d79717f0b7e2 (patch)
tree391c675a888fad5663faa703ce3df06c6a4b8309
parente11feb230923a169c1e235552afa2f7bec7f0fff (diff)
downloadpodman-32aa12a285e160748c8e1f88f859d79717f0b7e2.tar.gz
podman-32aa12a285e160748c8e1f88f859d79717f0b7e2.tar.bz2
podman-32aa12a285e160748c8e1f88f859d79717f0b7e2.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>
-rw-r--r--cmd/podman/pods/ps.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/podman/pods/ps.go b/cmd/podman/pods/ps.go
index a89448275..aa42e1983 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")