Skip to content

Commit

Permalink
fix failure for CookieIntegrationTests.partitionedAttributeTest
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Jul 1, 2024
1 parent 6380d3a commit ca25b6c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public JettyCoreServerHttpResponse(Response response, JettyDataBufferFactory dat
.maxAge(httpCookie.getMaxAge())
.sameSite(httpCookie.getSameSite().name())
.secure(httpCookie.isSecure())
.partitioned(httpCookie.isPartitioned())
.build();
this.addCookie(responseCookie);
i.remove();
Expand Down Expand Up @@ -224,7 +225,7 @@ public boolean isHttpOnly() {

@Override
public boolean isPartitioned() {
return false;
return this.responseCookie.isPartitioned();
}

@Override
Expand Down

0 comments on commit ca25b6c

Please sign in to comment.