From 66f257e38265222e6a7f78faf5f7c004dd6d93d4 Mon Sep 17 00:00:00 2001 From: bergquist Date: Tue, 8 Nov 2016 07:51:19 +0100 Subject: [PATCH] tech(pagerduty): make api call sync --- pkg/services/alerting/notifiers/pagerduty.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/alerting/notifiers/pagerduty.go b/pkg/services/alerting/notifiers/pagerduty.go index 559276231f7..1de34e07e5a 100644 --- a/pkg/services/alerting/notifiers/pagerduty.go +++ b/pkg/services/alerting/notifiers/pagerduty.go @@ -65,7 +65,7 @@ func (this *PagerdutyNotifier) Notify(evalContext *alerting.EvalContext) error { body, _ := bodyJSON.MarshalJSON() - cmd := &m.SendWebhook{ + cmd := &m.SendWebhookSync{ Url: pagerdutyEventApiUrl, Body: string(body), HttpMethod: "POST",