Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEBUG: Add additional logging for authz errors #539

Merged
merged 2 commits into from
Jun 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions model-engine/model_engine_server/api/llms_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,11 @@ async def get_model_endpoint(
)
return await use_case.execute(user=auth, model_endpoint_name=model_endpoint_name)
except (ObjectNotFoundException, ObjectNotAuthorizedException) as exc:
if isinstance(exc, ObjectNotAuthorizedException):
logger.info(
f"GET /llm/model-endpoints/{model_endpoint_name} for {auth} failed with authz error {exc.args}"
)

raise HTTPException(
status_code=404,
detail=f"Model Endpoint {model_endpoint_name} was not found.",
Expand Down