-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standardize the error codes from API endpoints #317
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6d90d77
Standardize the error code from API endpoints
jianoaix eef17ae
error codes
jianoaix cc56061
fix
jianoaix 1e26e44
fix
jianoaix 5cda3f3
fix
jianoaix 03a4fbe
fix
jianoaix 52d8bd7
Merge branch 'master' of https://github.com/Layr-Labs/eigenda into er…
jianoaix 5452188
common->api
jianoaix File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package api | ||
|
||
import ( | ||
"google.golang.org/grpc/codes" | ||
"google.golang.org/grpc/status" | ||
) | ||
|
||
// The canonical errors from the EigenDA gRPC API endpoints. | ||
// | ||
// Notes: | ||
// - Start the error space small (but sufficient), and expand when there is an important | ||
// failure case to separate out. | ||
// - Avoid simply wrapping system-internal errors without checking if they are appropriate | ||
// in user-facing errors defined here. Consider map and convert system-internal errors | ||
// before return to users from APIs. | ||
|
||
func NewGRPCError(code codes.Code, msg string) error { | ||
return status.Errorf(code, msg) | ||
} | ||
|
||
// HTTP Mapping: 400 Bad Request | ||
func NewInvalidArgError(msg string) error { | ||
return NewGRPCError(codes.InvalidArgument, msg) | ||
} | ||
|
||
// HTTP Mapping: 404 Not Found | ||
func NewNotFoundError(msg string) error { | ||
return NewGRPCError(codes.NotFound, msg) | ||
} | ||
|
||
// HTTP Mapping: 429 Too Many Requests | ||
func NewResourceExhaustedError(msg string) error { | ||
return NewGRPCError(codes.ResourceExhausted, msg) | ||
} | ||
|
||
// HTTP Mapping: 500 Internal Server Error | ||
func NewInternalError(msg string) error { | ||
return NewGRPCError(codes.Internal, msg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would probably need to standarize the error message and then check that here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, we could check the message, or surface an error with
NewNotFoundError
inside the GetBlobMetaata (this approach was used in the Churner, L95 in churner/server.go)