Update litellm/proxy/management_endpoints/jwt_key_mapping_endpoints.py

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Harshit Jain 2026-03-05 04:12:54 +05:30 committed by GitHub
parent 63459d6777
commit 36e63bd1ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -142,6 +142,11 @@ async def update_jwt_key_mapping(
status_code=409,
detail="A mapping with those claim values already exists.",
)
if "foreign" in error_str or "p2003" in error_str:
raise HTTPException(
status_code=400,
detail="The provided key does not match an existing virtual key.",
)
raise HTTPException(status_code=500, detail="Failed to update JWT key mapping.")