diff --git a/src/sinks/util/http.rs b/src/sinks/util/http.rs index 0904a67cb0468..53d93d5fc8a93 100644 --- a/src/sinks/util/http.rs +++ b/src/sinks/util/http.rs @@ -521,6 +521,8 @@ where match status { StatusCode::TOO_MANY_REQUESTS => RetryAction::Retry("too many requests".into()), + StatusCode::NOT_FOUND => RetryAction::Retry("not found".into()), + StatusCode::REQUEST_TIMEOUT => RetryAction::Retry("request timedout".into()), StatusCode::NOT_IMPLEMENTED => { RetryAction::DontRetry("endpoint not implemented".into()) }