Open chpengzh opened 5 years ago
Hi @chpengzh, we detect non-English characters in the issue. This comment is an auto translation by @sofastack-robot to help other users to understand this issue.
We encourage you to describe your issue in English which is more friendly to other users.
DOWN
, even if the instance starts normally (no port is occupied, no other startup exception, /actruator/health
interface returns <UP> #位置java try { String status = readinessCheckListener.getHealthCheckerStatus() && readinessCheckListener.getHealthCallbackStatus() ? Status.UP.toString() : Status.DOWN.toString(); publisher.getApplication().setAppState(status) ; publisher.register(); } catch (Exception e) { LOGGER.info("sofa dashboard client register failed.", e); }
where: - readinessCheckListener#getHealthCheckerStatus
returns true
- readinessCheckListener# getHealthCallbackStatus
returns false
What does the getHealthCallbackStatus
function mean? How should the logic here be modified?
现象
如果同时启动一个服务的两个实例,后启动的实例状态为
DOWN
,哪怕该实例正常启动(无端口占用,无其他启动异常,/actruator/health
接口返回值为UP
)定位
其中:
readinessCheckListener#getHealthCheckerStatus
返回true
readinessCheckListener#getHealthCallbackStatus
返回false
请问一下
getHealthCallbackStatus
这个函数是何含义? 这里的逻辑应该如何修改?