mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 14:15:53 +00:00
fix(notification):: fix missing error check
This commit is contained in:
parent
552b683f9e
commit
5911b8f3c3
|
@ -53,6 +53,9 @@ func (n *HTTPNotifier) Notify(work *model.WorkRequest) error {
|
|||
}
|
||||
|
||||
req, err := http.NewRequest("POST", n.URL.String(), bytes.NewBuffer(notifJSON))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
req.Header.Set("Content-Type", "application/json")
|
||||
|
||||
client := &http.Client{}
|
||||
|
|
Loading…
Reference in New Issue
Block a user