[#1540] getSvc: Drop redundant returns
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 2m20s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m53s
Tests and linters / Lint (pull_request) Successful in 4m53s
DCO action / DCO (pull_request) Successful in 5m36s
Vulncheck / Vulncheck (pull_request) Successful in 5m58s
Build / Build Components (pull_request) Successful in 7m1s
Tests and linters / Staticcheck (pull_request) Successful in 6m57s
Tests and linters / gopls check (pull_request) Successful in 7m3s
Tests and linters / Tests (pull_request) Successful in 8m29s
Tests and linters / Tests with -race (pull_request) Successful in 9m13s
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 2m20s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m53s
Tests and linters / Lint (pull_request) Successful in 4m53s
DCO action / DCO (pull_request) Successful in 5m36s
Vulncheck / Vulncheck (pull_request) Successful in 5m58s
Build / Build Components (pull_request) Successful in 7m1s
Tests and linters / Staticcheck (pull_request) Successful in 6m57s
Tests and linters / gopls check (pull_request) Successful in 7m3s
Tests and linters / Tests (pull_request) Successful in 8m29s
Tests and linters / Tests with -race (pull_request) Successful in 9m13s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
2fe0029207
commit
339e47e51c
1 changed files with 0 additions and 4 deletions
|
@ -240,13 +240,11 @@ func (a *assemblerec) tryGetChunkFromLocalStorage(ctx context.Context, ch object
|
|||
object, err = a.localStorage.Head(ctx, addr, false)
|
||||
if err != nil && !errors.Is(err, context.Canceled) {
|
||||
a.log.Warn(ctx, logs.GetUnableToHeadPartECObject, zap.String("node", "local"), zap.Stringer("part_id", objID), zap.Error(err))
|
||||
return nil
|
||||
}
|
||||
} else {
|
||||
object, err = a.localStorage.Get(ctx, addr)
|
||||
if err != nil && !errors.Is(err, context.Canceled) {
|
||||
a.log.Warn(ctx, logs.GetUnableToGetPartECObject, zap.String("node", "local"), zap.Stringer("part_id", objID), zap.Error(err))
|
||||
return nil
|
||||
}
|
||||
}
|
||||
return object
|
||||
|
@ -288,13 +286,11 @@ func (a *assemblerec) tryGetChunkFromRemoteStorage(ctx context.Context, node cli
|
|||
object, err = a.remoteStorage.headObjectFromNode(ctx, addr, node, false)
|
||||
if err != nil && !errors.Is(err, context.Canceled) {
|
||||
a.log.Warn(ctx, logs.GetUnableToHeadPartECObject, zap.String("node", hex.EncodeToString(node.PublicKey())), zap.Stringer("part_id", objID), zap.Error(err))
|
||||
return nil
|
||||
}
|
||||
} else {
|
||||
object, err = a.remoteStorage.getObjectFromNode(ctx, addr, node)
|
||||
if err != nil && !errors.Is(err, context.Canceled) {
|
||||
a.log.Warn(ctx, logs.GetUnableToGetPartECObject, zap.String("node", hex.EncodeToString(node.PublicKey())), zap.Stringer("part_id", objID), zap.Error(err))
|
||||
return nil
|
||||
}
|
||||
}
|
||||
return object
|
||||
|
|
Loading…
Reference in a new issue