Browse Source

Add the missing comma

cglrkn 8 years ago
parent
commit
548bc6b7c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/services/alerting/notifiers/opsgenie.go

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

@@ -125,7 +125,7 @@ func (this *OpsGenieNotifier) closeAlert(evalContext *alerting.EvalContext) erro
 	body, _ := bodyJSON.MarshalJSON()
 	body, _ := bodyJSON.MarshalJSON()
 
 
 	cmd := &m.SendWebhookSync{
 	cmd := &m.SendWebhookSync{
-		Url:        fmt.Sprintf("%s/alertId-%d/close?identifierType=alias", opsgenieAlertURL, evalContext.Rule.Id)
+		Url:        fmt.Sprintf("%s/alertId-%d/close?identifierType=alias", opsgenieAlertURL, evalContext.Rule.Id),
 		Body:       string(body),
 		Body:       string(body),
 		HttpMethod: "POST",
 		HttpMethod: "POST",
     		HttpHeader: map[string]string{
     		HttpHeader: map[string]string{