Coder Social home page Coder Social logo

Comments (7)

puellanivis avatar puellanivis commented on August 19, 2024 15

Oh, this might be the source of the confusion: Wrap(…) returns a &withStack{ &withMessage{ … } } and so when one calls Unwrap() on it, one gets the &withMessage{ … } rather than the original message that was put into Wrap(…), which makes it appear like it is not unwrapping, unless you’re printing stack traces: https://play.golang.org/p/x0JN-W_FStu

This ends up being misleading because one would naturally expect err2 := errors.Unwrap(errors.Wrap(err1)) would result in err2 == err1 but it does not, because internally errors.Wrap is actually double wrapping. No one noticed when using Cause(…) because it kept unwrapping until it got to a non-Causer, but errors.Unwrap only unwraps a single layer. 😕

from errors.

puellanivis avatar puellanivis commented on August 19, 2024 6

errors.Cause will repeatedly unwrap all of the pkg/errors wrappings. So we get:

err := stdErrors.New("thing")
err2 := errors.WithMessage(err, "inner wrap")
err3 := errors.Wrap(err, "outer wrap")
cause := errors.Cause(err3)
unwrap := errors.Unwrap(err3)
// (cause == err) == true
// (unwrap != err3 && unwrap != err2 && unwrap != err) == true

There is no way in this scenario to retrieve err2 from err3, and that’s not ideal.

from errors.

davecheney avatar davecheney commented on August 19, 2024

errors.Unwraps only unwraps errors wrapper with errors.Wrap, not fmt.Errorf

from errors.

yaziine avatar yaziine commented on August 19, 2024

Not sure to understand you here.
Do you mean that errors.Unwraps only unwraps errors wrapped with fmt.Errorf instead?

from errors.

davecheney avatar davecheney commented on August 19, 2024

Unwrap is just a wrapper around the stdlib errors package's Unwrap.

https://github.com/pkg/errors/blob/master/go113.go

from errors.

aperezg avatar aperezg commented on August 19, 2024

As @davecheney said the behaviour of the Unwrap in the pkg/errors is the same that the standard library:

https://play.golang.org/p/73xe4gnoXKz

from errors.

zhangguanzhang avatar zhangguanzhang commented on August 19, 2024

should use errors.Cause(err)
https://play.golang.org/p/L-uJU07lCAu

from errors.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.