mirror of
https://github.com/containers/podman.git
synced 2025-06-17 06:57: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:
@ -334,11 +334,11 @@ func (ir *Runtime) doPullImage(ctx context.Context, sc *types.SystemContext, goa
|
||||
// If the image passed in was fully-qualified, we will have 1 refpair. Bc the image is fq'd, we don't need to yap about registries.
|
||||
if !goal.usedSearchRegistries {
|
||||
if pullErrors != nil && len(pullErrors.Errors) > 0 { // this should always be true
|
||||
return nil, errors.Wrap(pullErrors.Errors[0], "unable to pull image")
|
||||
return nil, pullErrors.Errors[0]
|
||||
}
|
||||
return nil, errors.Errorf("unable to pull image, or you do not have pull access")
|
||||
}
|
||||
return nil, pullErrors
|
||||
return nil, errors.Cause(pullErrors)
|
||||
}
|
||||
if len(images) > 0 {
|
||||
ir.newImageEvent(events.Pull, images[0])
|
||||
|
Reference in New Issue
Block a user