You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
httpx_client_error_handler is dangerously generic since it forwards client's errors of any httpx calls on the api-server . E.g. there is a risk of revealing secrets.
backend APIs error must be specified (they should be in OAS) and handled by the api-server appropriately before responding the client. Remember that the api-server is an aggregator and gateway to our system
See e.g. ProjectNotFoundError as example
services/webserver error handling needs some extra love!
The text was updated successfully, but these errors were encountered:
httpx_client_error_handler
is dangerously generic since it forwards client's errors of anyhttpx
calls on the api-server . E.g. there is a risk of revealing secrets.api-server
appropriately before responding the client. Remember that theapi-server
is an aggregator and gateway to our systemProjectNotFoundError
as exampleservices/webserver
error handling needs some extra love!The text was updated successfully, but these errors were encountered: