Time should not contribue to overall status. (#6276)
This commit is contained in:
parent
146feea4a6
commit
604ea5d684
@ -227,12 +227,12 @@ export default class Status {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_overallStatus = (health) => {
|
_overallStatus = (health) => {
|
||||||
const all = [health.peers, health.sync, health.time].filter(x => x);
|
const allWithTime = [health.peers, health.sync, health.time].filter(x => x);
|
||||||
const allNoTime = [health.peers, health.sync].filter(x => x);
|
const all = [health.peers, health.sync].filter(x => x);
|
||||||
const statuses = all.map(x => x.status);
|
const statuses = all.map(x => x.status);
|
||||||
const bad = statuses.find(x => x === STATUS_BAD);
|
const bad = statuses.find(x => x === STATUS_BAD);
|
||||||
const needsAttention = allNoTime.map(x => x.status).find(x => x === STATUS_WARN);
|
const needsAttention = statuses.find(x => x === STATUS_WARN);
|
||||||
const message = all.map(x => x.message).filter(x => x);
|
const message = allWithTime.map(x => x.message).filter(x => x);
|
||||||
|
|
||||||
if (all.length) {
|
if (all.length) {
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user