mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-04 19:08:13 +00:00
fix(auth_checks.py): set default user in-memory cache to 5s
This commit is contained in:
@@ -726,7 +726,9 @@ async def get_user_object(
|
||||
response_dict = _response.model_dump()
|
||||
|
||||
# save the user object to cache
|
||||
await user_api_key_cache.async_set_cache(key=user_id, value=response_dict)
|
||||
await user_api_key_cache.async_set_cache(
|
||||
key=user_id, value=response_dict, ttl=DEFAULT_IN_MEMORY_TTL
|
||||
)
|
||||
|
||||
# save to db access time
|
||||
_update_last_db_access_time(
|
||||
|
||||
Reference in New Issue
Block a user