correctly flush cache when updating user

This commit is contained in:
Ishaan Jaff 2024-07-13 12:05:09 -07:00
parent 9d02d51a17
commit 670bf1b98d

View file

@ -1,16 +1,21 @@
# What is this?
## Helper utils for the management endpoints (keys/users/teams)
import uuid
from datetime import datetime
from functools import wraps
from litellm.proxy._types import UserAPIKeyAuth, ManagementEndpointLoggingPayload
from litellm.proxy.common_utils.http_parsing_utils import _read_request_body
from litellm._logging import verbose_logger
from typing import Optional
from fastapi import Request
from litellm.proxy._types import LiteLLM_TeamTable, Member, UserAPIKeyAuth
from litellm._logging import verbose_logger
from litellm.proxy._types import (
LiteLLM_TeamTable,
ManagementEndpointLoggingPayload,
Member,
UserAPIKeyAuth,
)
from litellm.proxy.common_utils.http_parsing_utils import _read_request_body
from litellm.proxy.utils import PrismaClient
import uuid
from typing import Optional
async def add_new_member(
@ -32,13 +37,8 @@ async def add_new_member(
await prisma_client.db.litellm_usertable.upsert(
where={"user_id": new_member.user_id},
data={
"update": {
"teams": {"push": [team_id]}
},
"create": {
"user_id": new_member.user_id,
"teams": [team_id]
}
"update": {"teams": {"push": [team_id]}},
"create": {"user_id": new_member.user_id, "teams": [team_id]},
},
)
elif new_member.user_email is not None:
@ -123,7 +123,6 @@ def management_endpoint_wrapper(func):
logging_payload=logging_payload,
parent_otel_span=parent_otel_span,
)
if _http_request:
_route = _http_request.url.path
# Flush user_api_key cache if this was an update/delete call to /key, /team, or /user