-
Notifications
You must be signed in to change notification settings - Fork 106
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
Partly revert "Fix poll_ready usage in ChainVerifier" #1735
Conversation
This reverts commit 0723ac5.
I think @yaahc should check this PR out as well. Turns out the revert is non-trivial. |
The Windows CI failure should be fixed by #1736. |
It's possible that the small buffers fixed in this PR could hang |
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 to me
Hmm seems like CI failed because cargo couldn't download crates. Retrying. |
Reverts #1700
This revert is ok, because the underlying bug in
tower::Buffer
has been fixed. See #1593 for details.But the code needs a few tweaks to avoid unlikely deadlocks.
The underlying services aren't directly buffered, but they do use some buffered services. We have open tickets for checking their buffer bounds (#1675), and dealing with backpressure more generally (#1618).