Skip to content

Commit

Permalink
[FIX] auth_saml: message indicates that a key is found incorrectly
Browse files Browse the repository at this point in the history
The message is incorrect, the log is done when the attribute key is not
found.
  • Loading branch information
vincent-hatakeyama committed Jan 28, 2025
1 parent 5f572c8 commit e0ea455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth_saml/models/auth_saml_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def _hook_validate_auth_response(self, response, matching_value):
for attribute in self.attribute_mapping_ids:
if attribute.attribute_name not in attrs:
_logger.debug(
"SAML attribute '%s' found in response %s",
"SAML attribute '%s' not found in response %s",
attribute.attribute_name,
attrs,
)
Expand Down

0 comments on commit e0ea455

Please sign in to comment.