瀏覽代碼

Merge pull request #13284 from cbonte/hipchat-notifications

fix hipchat color code used for "no data" notifications
Torkel Ödegaard 7 年之前
父節點
當前提交
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"
 	}