diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-20 12:42:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 12:42:15 +0200 |
commit | 386de7a1fbfef0c266e04f6471f9382a5d39a02f (patch) | |
tree | 8e3f5471cd71d055e9598a32c1e235a5e9cb4cef /cmd | |
parent | 9ac3a03d041161bed934ca0259fb70072b9cd8d0 (diff) | |
parent | 524ae12977d3eb93bd8b2eac4a15c84a05a66dbb (diff) | |
download | podman-386de7a1fbfef0c266e04f6471f9382a5d39a02f.tar.gz podman-386de7a1fbfef0c266e04f6471f9382a5d39a02f.tar.bz2 podman-386de7a1fbfef0c266e04f6471f9382a5d39a02f.zip |
Merge pull request #7356 from vrothberg/2.0-vendor-image
[2.0] vendor c/image v5.5.2
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/images/search.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/podman/images/search.go b/cmd/podman/images/search.go index f1a2cda96..f1768a3c0 100644 --- a/cmd/podman/images/search.go +++ b/cmd/podman/images/search.go @@ -103,10 +103,6 @@ func imageSearch(cmd *cobra.Command, args []string) error { return errors.Errorf("search requires exactly one argument") } - if searchOptions.Limit > 100 { - return errors.Errorf("Limit %d is outside the range of [1, 100]", searchOptions.Limit) - } - // TLS verification in c/image is controlled via a `types.OptionalBool` // which allows for distinguishing among set-true, set-false, unspecified // which is important to implement a sane way of dealing with defaults of |