-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[ENH] Propagate version through system #2839
Conversation
Reviewer ChecklistPlease leverage this checklist to ensure your code review is thorough before approving Testing, Bugs, Errors, Logs, Documentation
System Compatibility
Quality
|
This stack of pull requests is managed by Graphite. Learn more about stacking. |
9655191
to
7d7efe6
Compare
7df31ca
to
73b664c
Compare
7d7efe6
to
2c6ff47
Compare
73b664c
to
f1748e2
Compare
2c6ff47
to
d9fbe68
Compare
bd105c6
to
cc4d3bf
Compare
@@ -10,7 +10,7 @@ pub enum ErrorCodes { | |||
// CANCELLED indicates the operation was cancelled (typically by the caller). | |||
Cancelled = 1, | |||
// UNKNOWN indicates an unknown error. | |||
UNKNOWN = 2, | |||
Unknown = 2, |
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.
cleanup
@@ -39,6 +37,10 @@ pub enum ErrorCodes { | |||
Unavailable = 14, | |||
// DATA_LOSS indicates unrecoverable data loss or corruption. | |||
DataLoss = 15, | |||
// UNAUTHENTICATED indicates the request does not have valid authentication credentials for the operation. |
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.
cleanup reordering
667bc3f
to
9bc5f5f
Compare
cce9f81
to
fe32510
Compare
fe32510
to
3c6a0c4
Compare
Description of changes
Summarize the changes made by this PR.
Test plan
How are these changes tested?
pytest
for python,yarn test
for js,cargo test
for rustDocumentation Changes
None