Skip to content

Commit

Permalink
eos: fixed error reporting in the gRPC client
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Dec 17, 2024
1 parent fa972ee commit db70281
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/fix-eos-grpc-errors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: fixed error reporting in the EOS gRPC client

This in particular fixes the lock-related errors

https://github.com/cs3org/reva/pull/5015
9 changes: 8 additions & 1 deletion pkg/eosclient/eosgrpc/eosgrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,14 @@ func (c *Client) getRespError(rsp *erpc.NSResponse, err error) error {
return nil
}

return errtypes.InternalError("Err from EOS: " + fmt.Sprintf("%#v", rsp.Error))
switch rsp.Error.Code {
case 16: // EBUSY
return eosclient.FileIsLockedError
case 17: // EEXIST
return eosclient.AttrAlreadyExistsError
default:
return errtypes.InternalError(fmt.Sprintf("%s (code: %d)", rsp.Error.Msg, rsp.Error.Code))
}
}

// Common code to create and initialize a NSRequest.
Expand Down

0 comments on commit db70281

Please sign in to comment.