Skip to content

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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add cookie to request cookie store when it's present
  • Loading branch information
tranchitam committed Jul 31, 2018
commit ed0895bb54618705bb0a3c21000739bddd9ad29c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public boolean exitAfterIntercept(Channel channel,
}

if (requestCookieStore != null) {
cookieStore.add(request.getUri(), c);
requestCookieStore.add(request.getUri(), c);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please restore

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restored

}
}
Expand Down