[#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
|
@ -157,9 +157,11 @@ func (p *Streamer) SendChunk(prm *PutChunkPrm) error {
|
|||
return errNotInit
|
||||
}
|
||||
|
||||
_, err := p.target.Write(prm.chunk)
|
||||
if _, err := p.target.Write(prm.chunk); err != nil {
|
||||
return fmt.Errorf("(%T) could not write payload chunk to target: %w", p, err)
|
||||
}
|
||||
|
||||
return fmt.Errorf("(%T) could not write payload chunk to target: %w", p, err)
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *Streamer) Close() (*PutResponse, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue