-
Notifications
You must be signed in to change notification settings - Fork 15
009 human readable errors impl #304
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
Draft
haseebrabbani
wants to merge
9
commits into
main
Choose a base branch
from
009-human-readable-errors-impl
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4b48b81
feat(server): reshape HTTP error envelope to {code, message, meta} (#…
haseebrabbani 94021fd
feat(server): route gRPC errors through tonic::Status (#179)
haseebrabbani 39415de
feat(client): expose Guardian error code/message/meta on Rust client …
haseebrabbani c61016b
feat(guardian-client): parse { code, message, meta } error body (#179)
haseebrabbani d2c5ec4
feat(operator-client): parse reshaped { code, message, meta } errors …
haseebrabbani fe45b26
feat(multisig-client): add codeless-transport connectivity classifier…
haseebrabbani 2b2cad9
chore(examples): operator-smoke-web reads data.message (was data.erro…
haseebrabbani 9deed29
docs(speckit): add 009 implementation plan + tasks (#179)
haseebrabbani 8fa91e0
style(server): cargo fmt (#179)
haseebrabbani 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
🎯 Functional Correctness | 🟡 Minor
🧩 Analysis chain
🏁 Script executed:
Repository: OpenZeppelin/guardian
Length of output: 17079
🏁 Script executed:
Repository: OpenZeppelin/guardian
Length of output: 50377
🏁 Script executed:
Repository: OpenZeppelin/guardian
Length of output: 50378
🏁 Script executed:
Repository: OpenZeppelin/guardian
Length of output: 50378
Differentiate
delta_not_foundfrom otherNotFounderrors.get_delta_sincecan return bothDeltaNotFound(no newer canonical deltas) andAccountNotFoundfromresolve_account; both become gRPCNotFound, so this branch also hides a missing-account error. Switch on the stable Guardian error code (delta_not_foundvsaccount_not_found) instead of the transport-level not-found signal.🤖 Prompt for AI Agents