diff options
author | Karthik Elango <kelango@redhat.com> | 2022-06-28 15:31:20 -0400 |
---|---|---|
committer | Karthik Elango <kelango@redhat.com> | 2022-07-14 13:18:53 -0400 |
commit | a2f6cc74e72edf0b7045c8410ed3f45489999e2b (patch) | |
tree | 7424569f997630623d4290ace20ccf63cf743897 /pkg/api/handlers/compat/containers_stop.go | |
parent | 3637d55191be2e9a5b9e13f8f62db4c27d188741 (diff) | |
download | podman-a2f6cc74e72edf0b7045c8410ed3f45489999e2b.tar.gz podman-a2f6cc74e72edf0b7045c8410ed3f45489999e2b.tar.bz2 podman-a2f6cc74e72edf0b7045c8410ed3f45489999e2b.zip |
Podman stop --filter flag
Filter flag is added for podman stop and podman --remote stop. Filtering logic is implemented in
getContainersAndInputByContext(). Start filtering can be manipulated to use this logic as well to limit redundancy.
Signed-off-by: Karthik Elango <kelango@redhat.com>
Diffstat (limited to 'pkg/api/handlers/compat/containers_stop.go')
-rw-r--r-- | pkg/api/handlers/compat/containers_stop.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/api/handlers/compat/containers_stop.go b/pkg/api/handlers/compat/containers_stop.go index 33bb3a679..c9a27dd83 100644 --- a/pkg/api/handlers/compat/containers_stop.go +++ b/pkg/api/handlers/compat/containers_stop.go @@ -33,9 +33,7 @@ func StopContainer(w http.ResponseWriter, r *http.Request) { utils.Error(w, http.StatusBadRequest, fmt.Errorf("failed to parse parameters for %s: %w", r.URL.String(), err)) return } - name := utils.GetName(r) - options := entities.StopOptions{ Ignore: query.Ignore, } |