Merge pull request from 0x46616c6b/fix-hipchat-token

remove checking auth token in config/notifiers.go
This commit is contained in:
Fabian Reinartz 2016-01-06 16:32:59 +01:00
commit 3de6b062a2

View File

@ -228,10 +228,6 @@ func (c *HipchatConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
return fmt.Errorf("missing room id in Hipchat config")
}
if c.AuthToken == "" {
return fmt.Errorf("missing auth token in Hipchat config")
}
return checkOverflow(c.XXX, "hipchat config")
}