Browse Source

rules: fix bug for unknown alert state. (#7599)

Signed-off-by: johncming <johncming@yahoo.com>
pull/7611/head
johncming 4 years ago committed by GitHub
parent
commit
a69a8b931f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      rules/alerting.go

2
rules/alerting.go

@ -74,7 +74,7 @@ func (s AlertState) String() string {
case StateFiring:
return "firing"
}
panic(errors.Errorf("unknown alert state: %s", s.String()))
panic(errors.Errorf("unknown alert state: %d", s))
}
// Alert is the user-level representation of a single instance of an alerting rule.

Loading…
Cancel
Save