(fix) fix error message raised on passing invalid tokens

This commit is contained in:
ishaan-jaff 2024-03-15 14:50:34 -07:00
parent 6ee6fb6c73
commit fd93a68b0d
2 changed files with 5 additions and 2 deletions

View file

@ -889,6 +889,9 @@ async def user_api_key_auth(
raise Exception(
f"This key is made for LiteLLM UI, Tried to access route: {route}. Not allowed"
)
if valid_token is None:
# No token was found when looking up in the DB
raise Exception("Invalid token passed")
if valid_token_dict is not None:
return UserAPIKeyAuth(api_key=api_key, **valid_token_dict)
else: