-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Bugfix/2755 IllegalStateException after read timeout #2845
base: master
Are you sure you want to change the base?
Bugfix/2755 IllegalStateException after read timeout #2845
Conversation
@SteKoe formatted code in PR |
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.
Thanks for providing the fix :)
Can you please add tests showing the new code works. Ideally they should succeed with your changes and fail when running against the original code.
<dependency> | ||
<groupId>io.projectreactor.netty</groupId> | ||
<artifactId>reactor-netty-http</artifactId> | ||
<optional>true</optional> |
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'm not sure how to define the dependency here correctly.
webflux is optional and you only need the reactor-netty-http in webflux case, so this is optional, too.
But when webflux is used, this is now required, right? So the users would need to include this dependency additionally? How do they know this?
No description provided.