Skip to content

Commit ecf92e9

Browse files
[FIX] auth_saml: message indicates that a key is found incorrectly
The message is incorrect, the log is done when the attribute key is not found.
1 parent a9e5c35 commit ecf92e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

auth_saml/models/auth_saml_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def _hook_validate_auth_response(self, response, matching_value):
357357
for attribute in self.attribute_mapping_ids:
358358
if attribute.attribute_name not in attrs:
359359
_logger.debug(
360-
"SAML attribute '%s' found in response %s",
360+
"SAML attribute '%s' not found in response %s",
361361
attribute.attribute_name,
362362
attrs,
363363
)

0 commit comments

Comments
 (0)