-
Notifications
You must be signed in to change notification settings - Fork 385
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(pubsub): add more than 128 links #12928
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #12928 +/- ##
=======================================
Coverage 93.62% 93.62%
=======================================
Files 2067 2067
Lines 180210 180228 +18
=======================================
+ Hits 168715 168733 +18
Misses 11495 11495
☔ View full report in Codecov by Sentry. |
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.
Quick drive by
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.
I don't want to block progress, but it feels that this could use another pass. If you need to commit this to make progress on other work, please go ahead. If it can wait until Monday let's do that.
I started refactoring, but looks like it’s gonna have to wait to Monday. |
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.
Just some surface-level questions/comments.
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.
A few nits..
batch.batch = batch_; | ||
sink_->AsyncPublish(std::move(request)).then(std::move(batch)); | ||
auto handler = batch_->Flush(); | ||
sink_->AsyncPublish(std::move(request)).then(std::move(batch)).then(std::move(handler)); |
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.
This line makes all your suffering through this long review worth it 😂
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.
Yes, it is much cleaner than how it started. I hope it makes your suffering through the review worth it as well 🥳
Part of #12528
This change is