Remove 'unknown' as one of the valid states when setting the initial state of a check.

This commit is contained in:
Ryan Mills 2015-04-13 20:46:01 +00:00
parent 370853d7ff
commit 2bd5bf04bd
1 changed files with 1 additions and 2 deletions

View File

@ -37,8 +37,7 @@ const (
)
func ValidStatus(s string) bool {
return s == HealthUnknown ||
s == HealthPassing ||
return s == HealthPassing ||
s == HealthWarning ||
s == HealthCritical
}