mirror of https://github.com/minio/minio.git
parent
57a3d9c16c
commit
650c6ee8fb
|
@ -79,12 +79,11 @@ func (target *WebhookTarget) Send(eventData event.Event) error {
|
|||
// FIXME: log returned error. ignore time being.
|
||||
_ = resp.Body.Close()
|
||||
|
||||
switch resp.StatusCode {
|
||||
case http.StatusOK, http.StatusAccepted, http.StatusContinue:
|
||||
return nil
|
||||
default:
|
||||
if resp.StatusCode < 200 || resp.StatusCode > 299 {
|
||||
return fmt.Errorf("sending event failed with %v", resp.Status)
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// Close - does nothing and available for interface compatibility.
|
||||
|
|
Loading…
Reference in New Issue