-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Use sessionRequest for wrapping HTTP stream instead of original Request #12303
Conversation
@robbie01 thanks for the PR. Can you please also modify the |
c5f5182
to
ad7c02b
Compare
@janbartel Added a test case and squashed. Looks like it catches; it fails for |
@robbie01 this is looking good, thank you! It has even revealed a problem with the core |
@janbartel Absolutely, I'll have that taken care of once it's ready. |
@robbie01 ok, you're good to do a rebase now. |
Add SessionHandlerTest case to ensure that flushOnResponseCommit is not broken in the future. Signed-off-by: Robert B. Langer <[email protected]>
ad7c02b
to
fbb3e12
Compare
@janbartel Done, thanks! |
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.
Love it!
This fixes
flushOnResponseCommit
logic, which is currently broken due toSessionHandler.getManagedSession
returningnull
. With this,getManagedSession
will return theSessionRequest
.