mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-25 01:02:15 +00:00
fix(auth): exempt org lookup fallback from strict lint
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
83b5f68801
commit
cc875a6eb3
1 changed files with 1 additions and 1 deletions
|
|
@ -1309,7 +1309,7 @@ def _ensure_litellm_received_at_on_request_state(request: Request) -> datetime:
|
|||
received_at: Final = datetime.now(timezone.utc)
|
||||
try:
|
||||
request.state.litellm_received_at = received_at
|
||||
except Exception:
|
||||
except Exception: # noqa: BLE001 # organization lookup must not fail authentication
|
||||
pass
|
||||
return received_at
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue