-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Feature/enable cookie store at request level #1567
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
Feature/enable cookie store at request level #1567
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.
CookieStore cookieStore = request.getCookieStore() != null ? request.getCookieStore() : config.getCookieStore() ;
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 already updated.
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.
Please restore
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.
Restored
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.
Please restore
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.
Restored
@tranchitam Did you get a chance to have a look at my comments. The idea is to be able to override the global CookieStore with one scoped at request level. Those 2 are exclusive and only one should be updated.
6ea11f4 to
f8fab66
Compare
... into feature/enable-cookie-store-at-request-level
Hi @slandelle, I already updated the pull request to fix your comments. Please take a look. Thanks
mkurz
commented
May 21, 2020
@slandelle Can you have a look?
mkurz
commented
May 21, 2020
Also there is #1610 now, however seems liks it's just re-using the commits from this pull request here.
leomaiwego
commented
Feb 14, 2022
@slandelle Could you please take a look to this one?
Hi @slandelle, @TomGranot have you got time to take a look into this pull request again? If there is no issue, we really want to merge this PR to master as soon as possible.
Uh oh!
There was an error while loading. Please reload this page.
Motivations:
Changes:
RequesthasgetCookieStore()method.RequestBuilderhassetCookieStore()method to set cookie store -> cookie store at request level isnullby default.Results:
Related issue:
#1565