mirror of https://github.com/status-im/consul.git
Remove 'unknown' as one of the valid states when setting the initial state of a check.
This commit is contained in:
parent
275af975e8
commit
c92d45dd9b
|
@ -37,8 +37,7 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
func ValidStatus(s string) bool {
|
func ValidStatus(s string) bool {
|
||||||
return s == HealthUnknown ||
|
return s == HealthPassing ||
|
||||||
s == HealthPassing ||
|
|
||||||
s == HealthWarning ||
|
s == HealthWarning ||
|
||||||
s == HealthCritical
|
s == HealthCritical
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue