-
Notifications
You must be signed in to change notification settings - Fork 1
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
impl Stream and remove the "eager retry" logic #1
Conversation
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.
These are good changes, thank you! Left some notes inline.
Also, would you mind rebasing against master
to pick up the CI changes I just made?
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, thanks!
Codecov Report
Additional details and impacted files
|
Looks like two CI failures. One is because the rustdoc lint hadn't yet been renamed in 1.51, which we still support, so its build fails. The other is because, seemingly, something in our dependency graph isn't truthfully representing their minimum required dependency versions. You may have to explicitly list |
@jonhoo, could you run lints? I want to fix them finally =) |
Happy to merge this once we remove that now-unneeded line from Cargo.toml 🎉 |
So, are you waiting for the new release of |
Ah, I thought they did a release after merging the PR. In that case just updating the comment is fine 👍 |
Released in 0.2.3 🎉 Thanks for sticking with it :) |
…odecov-action-3 Bump codecov/codecov-action from 2 to 3
Stream
instance.Pending
. It's a controversial change, but I don't understand why the lib contains that logic. Firstly, it's a pretty rare situation, but it adds extra CAS on everyPending
. Secondly, it doesn't seem to be the library's responsibility (and It breaks our tests (WS pool with tricky logic)).