-
Notifications
You must be signed in to change notification settings - Fork 502
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
Change ExportResult to std::result::Result #347
Conversation
Codecov Report
@@ Coverage Diff @@
## master #347 +/- ##
==========================================
+ Coverage 53.69% 53.81% +0.11%
==========================================
Files 69 69
Lines 5790 5779 -11
==========================================
+ Hits 3109 3110 +1
+ Misses 2681 2669 -12
Continue to review full report at Codecov.
|
b552c7d
to
4c03612
Compare
The spec changed and ExportResult no longer includes the hint about error being retriable. Since it now only distinguishes between success and error, it makes sense to use Rust's standard Result type.
4c03612
to
b221a9d
Compare
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.
Looks good
Also looks like the CLA bot is stuck again.. |
b221a9d
to
5847d14
Compare
Hm yeah. How do we get it unstuck? Do we just wait? |
Not sure why it stops working, but pushing an empty commit should trigger it (when it starts working again?) |
Cool. I push another commit tomorrow 🤞 |
fb279c7
to
7c1d709
Compare
The spec changed and ExportResult no longer includes the hint about error being retriable. Since it now only distinguishes between success and error, it makes sense to use Rust's standard Result type.
Closes #331