[Bug] Health check 비정상 응답에 상세 데이터 누락 #126

Closed
opened 2026-02-10 10:26:45 +00:00 by seonkyu.kim · 0 comments
Owner

설명

POST /v1/out/health 호출 시 서비스 하나라도 비정상이면 503 응답을 반환하는데, datanull로 와서 어떤 서비스가 문제인지 확인할 수 없다.

현재 응답

{"data": null, "result": false, "code": "104", "msg": "하나 이상의 서비스에 문제가 있습니다."}

기대 응답

{"data": {"database": {"status": "healthy"}, "redis": {"status": "not_configured"}, "rabbitmq": {"status": "unhealthy", "connected": false, "initialized": false}}, "result": false, "code": "104", "msg": "하나 이상의 서비스에 문제가 있습니다."}

체크리스트

  • PublicController.cs — 503 응답에 checks 데이터 포함
## 설명 `POST /v1/out/health` 호출 시 서비스 하나라도 비정상이면 503 응답을 반환하는데, `data`가 `null`로 와서 어떤 서비스가 문제인지 확인할 수 없다. ### 현재 응답 ```json {"data": null, "result": false, "code": "104", "msg": "하나 이상의 서비스에 문제가 있습니다."} ``` ### 기대 응답 ```json {"data": {"database": {"status": "healthy"}, "redis": {"status": "not_configured"}, "rabbitmq": {"status": "unhealthy", "connected": false, "initialized": false}}, "result": false, "code": "104", "msg": "하나 이상의 서비스에 문제가 있습니다."} ``` ## 체크리스트 - [ ] `PublicController.cs` — 503 응답에 checks 데이터 포함
seonkyu.kim added the
Priority
Medium
Status
Available
Type
Bug
labels 2026-02-10 10:26:52 +00:00
seonkyu.kim added this to the Phase 3: 메시지 & Push Core milestone 2026-02-10 10:26:58 +00:00
seonkyu.kim self-assigned this 2026-02-10 10:29:34 +00:00
seonkyu.kim added
Status
Done
and removed
Status
Available
labels 2026-02-10 10:35:46 +00:00
Sign in to join this conversation.
No description provided.