mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
fix(proxy_server.py): fix user_id_information none check
This commit is contained in:
parent
c15df27c1e
commit
8c9623a6bc
1 changed files with 1 additions and 1 deletions
|
@ -562,6 +562,7 @@ async def user_api_key_auth(
|
||||||
verbose_proxy_logger.debug("Token from db: %s", valid_token)
|
verbose_proxy_logger.debug("Token from db: %s", valid_token)
|
||||||
elif valid_token is not None:
|
elif valid_token is not None:
|
||||||
verbose_proxy_logger.debug("API Key Cache Hit!")
|
verbose_proxy_logger.debug("API Key Cache Hit!")
|
||||||
|
user_id_information = None
|
||||||
if valid_token:
|
if valid_token:
|
||||||
# Got Valid Token from Cache, DB
|
# Got Valid Token from Cache, DB
|
||||||
# Run checks for
|
# Run checks for
|
||||||
|
@ -665,7 +666,6 @@ async def user_api_key_auth(
|
||||||
if user_passed_to_chat_completions is not None:
|
if user_passed_to_chat_completions is not None:
|
||||||
user_id_list.append(user_passed_to_chat_completions)
|
user_id_list.append(user_passed_to_chat_completions)
|
||||||
|
|
||||||
user_id_information = None
|
|
||||||
for id in user_id_list:
|
for id in user_id_list:
|
||||||
value = user_api_key_cache.get_cache(key=id)
|
value = user_api_key_cache.get_cache(key=id)
|
||||||
if value is not None:
|
if value is not None:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue