소스 검색

fix hipchat color code used "no data" notifications

Cyril Bonté 7 년 전
부모
커밋
0f4ee4ce87
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      pkg/services/alerting/notifiers/hipchat.go

+ 1 - 1
pkg/services/alerting/notifiers/hipchat.go

@@ -125,7 +125,7 @@ func (this *HipChatNotifier) Notify(evalContext *alerting.EvalContext) error {
 	case models.AlertStateOK:
 		color = "green"
 	case models.AlertStateNoData:
-		color = "grey"
+		color = "gray"
 	case models.AlertStateAlerting:
 		color = "red"
 	}