You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -689,7 +689,7 @@ if not errors:
689
689
else:
690
690
print('Not authenticated')
691
691
else:
692
-
print("Error when processing SAML Response: %s"% (', '.join(errors)))
692
+
print("Error when processing SAML Response: %s%s"% (', '.join(errors), auth.get_last_error_reason()))
693
693
```
694
694
695
695
The SAML response is processed and then checked that there are no errors. It also verifies that the user is authenticated and stored the userdata in session.
@@ -748,7 +748,7 @@ if len(errors) == 0:
748
748
else:
749
749
print("Sucessfully Logged out")
750
750
else:
751
-
print("Error when processing SLO: %s"% (', '.join(errors)))
751
+
print("Error when processing SLO: %s%s"% (', '.join(errors), auth.get_last_error_reason()))
752
752
```
753
753
754
754
If the SLS endpoints receives a Logout Response, the response is validated and the session could be closed, using the callback.
0 commit comments