mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
(fix) /key/info test
This commit is contained in:
parent
419bddae93
commit
42fcce4645
1 changed files with 3 additions and 2 deletions
|
@ -527,10 +527,11 @@ async def user_api_key_auth(
|
|||
)
|
||||
|
||||
# Token passed all checks
|
||||
api_key = hash_token(valid_token.token)
|
||||
api_key = valid_token.token
|
||||
hashed_token = hash_token(api_key)
|
||||
|
||||
# Add hashed token to cache
|
||||
user_api_key_cache.set_cache(key=api_key, value=valid_token, ttl=60)
|
||||
user_api_key_cache.set_cache(key=hashed_token, value=valid_token, ttl=60)
|
||||
valid_token_dict = _get_pydantic_json_dict(valid_token)
|
||||
valid_token_dict.pop("token", None)
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue