We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 690868c commit fc82dacCopy full SHA for fc82dac
pkg/services/alerting/eval_handler.go
@@ -47,7 +47,7 @@ func (e *DefaultEvalHandler) Eval(context *EvalContext) {
47
if i > 0 {
48
firingEval = "[" + firingEval + " " + operator + " " + strconv.FormatBool(cr.Firing) + "]"
49
} else {
50
- firingEval = strconv.FormatBool(firing)
+ firingEval = "[" + strconv.FormatBool(firing) + "]"
51
}
52
53
context.EvalMatches = append(context.EvalMatches, cr.EvalMatches...)
0 commit comments