Skip to content
Open
Changes from all commits
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: 4 additions & 1 deletion services/ui_backend_service/api/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ async def status(self, request):
description: Return system status information, such as cache
"405":
description: invalid HTTP Method
"500":
description: cache is unhealthy
"""

cache_status = {}
Expand Down Expand Up @@ -258,7 +260,8 @@ async def status(self, request):
"workers": worker_list
}

return web_response(status=200, body={
status_code = 200 if all([store["is_alive"] for store in cache_status.values()]) else 500
return web_response(status=status_code, body={
"cache": cache_status
})

Expand Down