ceph-csi/internal
Humble Chirammal 323cc0e3bb cleanup: avoid comparing errors directly
Go 1.13 contains support for error wrapping. To support wrapping,
fmt.Errorf now has a %w verb for creating wrapped errors, and three
new functions in the errors package ( errors.Unwrap, errors.Is and
errors.As) simplify unwrapping and inspecting wrapped errors.

With this change, If we currently compare errors using ==, we have to
use errors.Is instead. Example:

if err == io.ErrUnexpectedEOF

becomes

if errors.Is(err, io.ErrUnexpectedEOF)

https://tip.golang.org/doc/go1.13#error_wrapping

Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2020-06-17 06:26:11 +00:00
..
cephfs cephfs: fix IneffAssign warnings in resizeVolume() 2020-06-16 09:06:18 +00:00
csi-common cleanup: remove double import of csi spec from nodeserver 2020-06-11 10:28:24 +00:00
journal util: remove unused context.Context from GetPoolName() 2020-05-20 08:08:33 +00:00
liveness cleanup: move pkg/ to internal/ 2020-04-23 11:00:59 +00:00
rbd cleanup: avoid comparing errors directly 2020-06-17 06:26:11 +00:00
util cleanup: avoid comparing errors directly 2020-06-17 06:26:11 +00:00