forked from phoenix/litellm-mirror
fix - return stack trace on failing /health checks
This commit is contained in:
parent
0a456743d6
commit
c9108d43e0
2 changed files with 27 additions and 1 deletions
|
@ -3809,11 +3809,15 @@ async def ahealth_check(
|
|||
return response
|
||||
except Exception as e:
|
||||
traceback.print_exc()
|
||||
stack_trace = traceback.format_exc()
|
||||
if isinstance(stack_trace, str):
|
||||
stack_trace = stack_trace[:1000]
|
||||
if model not in litellm.model_cost and mode is None:
|
||||
raise Exception(
|
||||
"Missing `mode`. Set the `mode` for the model - https://docs.litellm.ai/docs/proxy/health#embedding-models"
|
||||
)
|
||||
return {"error": f"{str(e)}"}
|
||||
error_to_return = str(e) + " stack trace: " + stack_trace
|
||||
return {"error": error_to_return}
|
||||
|
||||
|
||||
####### HELPER FUNCTIONS ################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue