Skip to content

Commit

Permalink
Fix the OIDC debug message format bug
Browse files Browse the repository at this point in the history
(cherry picked from commit 2ee36e8)
  • Loading branch information
sberyozkin authored and gsmet committed Feb 6, 2024
1 parent e96d93a commit 13f4243
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ public Void apply(String cookieValue) {
configContext.oidcConfig.tenantId.get(), cookieValue.length());
if (cookieValue.length() > OidcUtils.MAX_COOKIE_VALUE_LENGTH) {
LOG.debugf(
"Session cookie length is greater than %d bytes."
"Session cookie length for the tenant %s is greater than %d bytes."
+ " The cookie will be split to chunks to avoid browsers ignoring it."
+ " Alternative recommendations: 1. Set 'quarkus.oidc.token-state-manager.split-tokens=true'"
+ " to have the ID, access and refresh tokens stored in separate cookies."
Expand Down

0 comments on commit 13f4243

Please sign in to comment.