fix error handling

This commit is contained in:
Lou Knauer 2022-06-02 12:15:08 +02:00
parent 7f97f7ec3b
commit e437bc6dee

View File

@ -97,13 +97,17 @@ func (s *HttpSink) Flush() error {
if err != nil {
cclog.ComponentError(s.name, "transport/tcp error:", err.Error())
// Wait between retries
time.Sleep(time.Duration(i+1) * time.Second)
time.Sleep(time.Duration(i+1) * (time.Second / 2))
continue
}
break
}
if res == nil {
return errors.New("flush failed due to repeated errors")
}
// Handle application errors
if res.StatusCode != http.StatusOK {
err := errors.New(res.Status)