-
Notifications
You must be signed in to change notification settings - Fork 79
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
final rx java removal #652
final rx java removal #652
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.
Hi @OwenLindsell . Thanks for this! Can you check the logging output from CI run please? The CI run started erring (not failing) due to excessive logging.
Which errors specifically? There are a lot of errors in the log 😄 |
Master build 2122:
|
Ah ok, this is not actually related to this PR, but I see it's a blocker for merging any PR. We have a story for this in Trello: Can I get an approval for this PR and we will only merge once the above story is complete? |
protected void hookOnNext(Buffer b) { | ||
Buffers.toByteBuf(b).release(); | ||
} | ||
}); |
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 think we should use the ByteStream.drop
instead:
Flux.from(response.body()
.drop())
.subscribe();
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, much neater! done :)
No description provided.