We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38c8409 commit 20b48a0Copy full SHA for 20b48a0
core/cat/auth/connection.py
@@ -43,10 +43,10 @@ async def __call__(
43
# extract credentials (user_id, token_or_key) from connection
44
user_id, credential = self.extract_credentials(connection)
45
auth_handlers = [
46
- # try to get user from local idp
47
- connection.app.state.ccat.core_auth_handler,
48
# try to get user from auth_handler
49
connection.app.state.ccat.custom_auth_handler,
+ # try to get user from local idp
+ connection.app.state.ccat.core_auth_handler,
50
]
51
for ah in auth_handlers:
52
user: AuthUserInfo = ah.authorize_user_from_credential(
0 commit comments