forked from TrueCloudLab/frostfs-node
[#521] Fix issues with transition from pkg/errors
pkg
Wrap functions at `pkg/errors` return nil if error argument was nil. fmt.Errorf always returns error so we need to add missing error checks to the code. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
71b87155ef
commit
b5256ccf4c
3 changed files with 14 additions and 6 deletions
|
@ -81,7 +81,7 @@ func (v *FormatValidator) Validate(obj *Object) error {
|
|||
|
||||
// TODO: combine small checks
|
||||
if err := v.checkExpiration(obj); err != nil {
|
||||
return fmt.Errorf("object did not pass expiration ch: %weck", err)
|
||||
return fmt.Errorf("object did not pass expiration check: %w", err)
|
||||
}
|
||||
|
||||
if err := object.CheckHeaderVerificationFields(obj.SDK()); err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue