Просмотр исходного кода

Merge pull request #13284 from cbonte/hipchat-notifications

fix hipchat color code used for "no data" notifications
Torkel Ödegaard 7 лет назад
Родитель
Сommit
438119b806
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"
 	}