-
Story
-
Resolution: Done
-
Normal
-
None
-
None
-
2
-
False
-
None
-
False
-
-
-
WINC - Sprint 234
Description
The openshift/windows-machine-config-operator has been using an archived library to handle errors: https://github.com/pkg/errors
We should be using the standard library https://pkg.go.dev/errors, for a multitude of reasons.
Engineering details
errors.Wrapf(err,"foo") should be replaced with fmt.Errorf("foo: [%w]",err)
errors.Wrap can be replaced with errors.New
Acceptance Criteria
- github.com/pkg/errors is no longer used
- links to
- mentioned on
(2 links to, 6 mentioned on)