Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 366904b

Browse files
committed
fix: end_session, accessing to client private method
1 parent f8dc18c commit 366904b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oidcrp/rp_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ def logout(self, state, client=None, post_logout_redirect_uri=''):
839839
client = self.get_client_from_session_key(state)
840840

841841
try:
842-
srv = client._service['end_session']
842+
srv = client.client_get('service', 'end_session')
843843
except KeyError:
844844
raise OidcServiceError("Does not know how to logout")
845845

0 commit comments

Comments
 (0)