Skip to content

Commit

Permalink
Fixed saml2 auth
Browse files Browse the repository at this point in the history
  • Loading branch information
crisingulani committed Sep 4, 2024
1 parent bfad3a8 commit d35e009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/core/saml2.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ def _update_user(self, user, attributes: dict, attribute_mapping: dict, force_sa

log = logging.getLogger("saml")

log.debug("USER: ", user)
log.debug("ATTRIBUTES: ", attributes)
log.debug("USER: %s", user)
log.debug("ATTRIBUTES: %s", attributes)

display_name = attributes.get('cn', [""])[0]

Expand Down

0 comments on commit d35e009

Please sign in to comment.