sdk: Remove panic from RPCs #15
No reviewers
Labels
No labels
P0
P1
P2
P3
good first issue
pool
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-sdk-go#15
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "bugfix/2-do-not-panic"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Partially close #2
Update lint config, fix lint errors
Signed-off-by: Anton Nikiforov an.nikiforov@yadro.com
Let's drop tests with go1.17 from github actions
We can also add go1.20 😄
@ -33,4 +33,3 @@
# some default golangci-lint linters
- deadcode
- errcheck
Why?
@ -6,3 +6,4 @@
"errors"
"go.uber.org/zap"
Unrelated to this commit, could also merge this with the next line.
@ -33,4 +33,3 @@
# some default golangci-lint linters
- deadcode
- errcheck
Deprecated since v1.49.0 of golangci-lint. Replaced by
unused
.@ -6,3 +6,4 @@
"errors"
"go.uber.org/zap"
Reverted. Moved to another commit.
@ -46,7 +46,7 @@ func (x ResBalanceGet) Amount() accounting.Decimal {
// FrostFS status codes are returned as `error`, otherwise, are included
an error
What about adding a variable for this and other errors touched in this commit?
Same here
@ -46,7 +46,7 @@ func (x ResBalanceGet) Amount() accounting.Decimal {
// FrostFS status codes are returned as `error`, otherwise, are included
Fixed.
Fixed.
@ -46,7 +46,7 @@ func (x ResBalanceGet) Amount() accounting.Decimal {
// FrostFS status codes are returned as `error`, otherwise, are included
Sounds good, added.
This can be dropped after a rebase on master.
Done.