diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-14 19:16:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 19:16:05 +0000 |
commit | f6e41e77c75826b141291940e7678e63c0ec2351 (patch) | |
tree | 6ef05dd35b69bd870b0f5355646123ecc98c090f /pkg/api | |
parent | 313ec3e2518745147438c28f8461eef6f629eab9 (diff) | |
parent | a2f6cc74e72edf0b7045c8410ed3f45489999e2b (diff) | |
download | podman-f6e41e77c75826b141291940e7678e63c0ec2351.tar.gz podman-f6e41e77c75826b141291940e7678e63c0ec2351.tar.bz2 podman-f6e41e77c75826b141291940e7678e63c0ec2351.zip |
Merge pull request #14832 from karthikelango137/filterFlagStop
Podman stop --filter flag
Diffstat (limited to 'pkg/api')
-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, } |