Merge pull request #414 from diogogmt/master

Updated webhook notifier config name in UnmarshalYAML.
This commit is contained in:
Fabian Reinartz 2016-06-29 00:23:49 +02:00 committed by GitHub
commit dd3e9b62c4

View File

@ -274,7 +274,7 @@ func (c *WebhookConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
if c.URL == "" { if c.URL == "" {
return fmt.Errorf("missing URL in webhook config") return fmt.Errorf("missing URL in webhook config")
} }
return checkOverflow(c.XXX, "slack config") return checkOverflow(c.XXX, "webhook config")
} }
// OpsGenieConfig configures notifications via OpsGenie. // OpsGenieConfig configures notifications via OpsGenie.