diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index bd30667d18..9dc4462a0e 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -2480,9 +2480,9 @@ async def health_readiness(): global prisma_client if prisma_client is not None: # if db passed in, check if it's connected if prisma_client.db.is_connected() == True: - return {"status": "healthy"} + return {"status": "healthy", "db": "connected"} else: - return {"status": "healthy"} + return {"status": "healthy", "db": "Not connected"} raise HTTPException(status_code=503, detail="Service Unhealthy")