Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
fix(oidc): Avoid storing Pac4j profile in cookie (datahub-project#6260)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjoyce0510 authored and cccs-tom committed Nov 18, 2022
1 parent 5bc4a4c commit 70e4bbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public SsoCallbackController(
@Nonnull AuthServiceClient authClient) {
_ssoManager = ssoManager;
setDefaultUrl("/"); // By default, redirects to Home Page on log in.
setSaveInSession(false);
setCallbackLogic(new SsoCallbackLogic(ssoManager, systemAuthentication, entityClient, authClient));
}

Expand Down
2 changes: 1 addition & 1 deletion datahub-frontend/run/frontend.env
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ METADATA_SERVICE_AUTH_ENABLED=true
DATAHUB_AKKA_MAX_HEADER_COUNT=64

# Change to override max header value length defaults
DATAHUB_AKKA_MAX_HEADER_VALUE_LENGTH=8k
DATAHUB_AKKA_MAX_HEADER_VALUE_LENGTH=8k

0 comments on commit 70e4bbe

Please sign in to comment.