Skip to content

Commit

Permalink
add new logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tianj7 committed Apr 9, 2024
1 parent 1e7daa9 commit 2b2d92f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fence/oidc/oidc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ def authenticate(self, request, methods, endpoint):
logger.info(methods)
logger.info("endpoint is")
logger.info(endpoint)
logger.info("query_client is")
logger.info(self.query_client)
for method in methods:
func = self._methods[method]
logger.info("func is")
logger.info(func)
client = func(self.query_client, request)
logger.info("client is")
logger.info("self.query_client is")
logger.info(client)
if client and client.check_endpoint_auth_method(method, endpoint):
request.auth_method = method
Expand Down

0 comments on commit 2b2d92f

Please sign in to comment.