more logging when org not found (#2569)

This commit is contained in:
Asher Foa 2025-06-03 13:58:28 -04:00 committed by GitHub
parent d09c1c865c
commit 77c17b705f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,6 +112,7 @@ async def _get_current_org_cached(x_api_key: str, db: AgentDB) -> Organization:
organization = await db.get_organization(organization_id=api_key_data.sub) organization = await db.get_organization(organization_id=api_key_data.sub)
if not organization: if not organization:
LOG.warning("Organization not found", organization_id=api_key_data.sub, **payload)
raise HTTPException(status_code=404, detail="Organization not found") raise HTTPException(status_code=404, detail="Organization not found")
# check if the token exists in the database # check if the token exists in the database