feat(pass_through_endpoint.py): cleanup error message + validate it works across multiple instances

This commit is contained in:
Krrish Dholakia 2025-10-07 18:04:44 -07:00
parent b4fc7d3cfa
commit 032a213b9b

View file

@ -991,7 +991,7 @@ def create_pass_through_route(
):
raise HTTPException(
status_code=404,
detail=f"Pass-through endpoint {target} not found. This could have been deleted or not yet added to the proxy.",
detail=f"Pass-through endpoint {endpoint} not found. This could have been deleted or not yet added to the proxy.",
)
return await pass_through_request( # type: ignore