From 0f8cf1e4b8e2a767061dde2c39822b7afbfe3095 Mon Sep 17 00:00:00 2001 From: Daisie Huang Date: Thu, 16 Jan 2025 20:14:17 -0800 Subject: [PATCH] Update auth.py --- src/authx/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authx/auth.py b/src/authx/auth.py index accf1a8..c02620f 100644 --- a/src/authx/auth.py +++ b/src/authx/auth.py @@ -732,7 +732,7 @@ def add_pending_user_to_opa(user_token): response, status_code = get_service_store_secret("opa", key=f"pending_users") if status_code != 200: return response, status_code - + logger.debug(f"token is {user_token}") user_name = get_user_id(None, token=user_token) if user_name is None: return {"error": "Could not verify jwt or obtain user ID"}, 403