diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-12 22:17:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 22:17:09 +0200 |
commit | 72e87c0ca89701e76148c192c98754af305f09d1 (patch) | |
tree | 4b75874d2097c54093108676283c4a062ca29adf /pkg/api | |
parent | 97c74f35a130ea512af2572e6dad43971d14e827 (diff) | |
parent | b28a8bc198169c88536160e1814e196e4723322e (diff) | |
download | podman-72e87c0ca89701e76148c192c98754af305f09d1.tar.gz podman-72e87c0ca89701e76148c192c98754af305f09d1.tar.bz2 podman-72e87c0ca89701e76148c192c98754af305f09d1.zip |
Merge pull request #11924 from jwhonce/issues/11894
Refactor podman search to be more code friendly
Diffstat (limited to 'pkg/api')
-rw-r--r-- | pkg/api/handlers/compat/images_search.go | 2 | ||||
-rw-r--r-- | pkg/api/server/register_images.go | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/pkg/api/handlers/compat/images_search.go b/pkg/api/handlers/compat/images_search.go index 01282513e..e9cc3e2b6 100644 --- a/pkg/api/handlers/compat/images_search.go +++ b/pkg/api/handlers/compat/images_search.go @@ -22,7 +22,6 @@ func SearchImages(w http.ResponseWriter, r *http.Request) { query := struct { Term string `json:"term"` Limit int `json:"limit"` - NoTrunc bool `json:"noTrunc"` Filters map[string][]string `json:"filters"` TLSVerify bool `json:"tlsVerify"` ListTags bool `json:"listTags"` @@ -50,7 +49,6 @@ func SearchImages(w http.ResponseWriter, r *http.Request) { options := entities.ImageSearchOptions{ Authfile: authfile, Limit: query.Limit, - NoTrunc: query.NoTrunc, ListTags: query.ListTags, Filters: filters, } diff --git a/pkg/api/server/register_images.go b/pkg/api/server/register_images.go index aa573eaa6..95a8b4939 100644 --- a/pkg/api/server/register_images.go +++ b/pkg/api/server/register_images.go @@ -1090,10 +1090,6 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error { // default: 25 // description: maximum number of results // - in: query - // name: noTrunc - // type: boolean - // description: do not truncate any of the result strings - // - in: query // name: filters // type: string // description: | |