-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
Ignore empty domain string in ResponseCookie #24663
Comments
What exactly is it returning? validateDomain starts with this which should ignore if (!StringUtils.hasLength(domain)) {
return;
}
To my knowledge we are not automatically parsing the cookies. It has to be a call from the application to access the cookies, so whether to parse the cookies and how to treat errors should be in the application's control. |
|
I'll get the full stacktrace but as far as I know we're not explicitly accessing the cookies. |
This doesn't look right. What client library is this with Reactor Netty or Jetty?
Yes please if you could find where it's failing. There might some response copying somewhere (e.g. through a filter) but by default the cookies are only parsed via Ultimately if a server is sending invalid cookies, I don't think we can ignore that either. However the |
Could be opentracing reading the cookies:
|
Yes, OpenTracing is causing cookies to be parsed early. The OpenTracing implementation, which came from Sleuth I think, has room for improvement. I will create tickets for that and link here. We can also improve how ClientResponse mutation works. I have created #24680 but because it is a more significant change it's set for 5.3. In the mean time here I think we can check for and ignore |
Great, thanks for the quick responses. |
Affects
v5.2.4.RELEASE
, though I think response cookie validation was added inv5.2.x
.We're calling a 3rd party service that returns a
Set-Cookie
header with adomain=""
value. This is non-compliant with rfc6265 so is technically wrong.However, Spring's now throwing an exception when encountering this header, so the entire request fails and the application is unable to consume the response.
Is this intended behaviour? I think in this case Spring should "be conservative in what it does, be liberal in what it accepts from others".
The text was updated successfully, but these errors were encountered: