mirror of
https://github.com/containers/podman.git
synced 2025-06-19 00:06:43 +08:00
Stop wrapping pull messages
The length and size of our error messages on failure to pull is huge. This patch at least eliminates some of the wrapping. But I think eventually we need to look at containers/image and see if we can modify the error messages to something a little more human friendly. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -443,7 +443,7 @@ func ImagesPull(w http.ResponseWriter, r *http.Request) {
|
||||
nil,
|
||||
util.PullImageAlways)
|
||||
if err != nil {
|
||||
utils.InternalServerError(w, errors.Wrapf(err, "error pulling image %q", query.Reference))
|
||||
utils.InternalServerError(w, err)
|
||||
return
|
||||
}
|
||||
res = append(res, handlers.LibpodImagesPullReport{ID: newImage.ID()})
|
||||
|
Reference in New Issue
Block a user