Fix webhook username mismatch

Fixing variable name mismatch so that the Authorization HTTP header is added to webhook notifications.
This commit is contained in:
Mark Theisen 2017-01-09 17:18:53 +01:00 committed by GitHub
parent 4f216f22e9
commit afda9cbb2d

View File

@ -50,7 +50,7 @@ func NewWebHookNotifier(model *m.AlertNotification) (alerting.Notifier, error) {
return &WebhookNotifier{
NotifierBase: NewNotifierBase(model.Id, model.IsDefault, model.Name, model.Type, model.Settings),
Url: url,
User: model.Settings.Get("user").MustString(),
User: model.Settings.Get("username").MustString(),
Password: model.Settings.Get("password").MustString(),
HttpMethod: model.Settings.Get("httpMethod").MustString("POST"),
log: log.New("alerting.notifier.webhook"),