use acceptedResponseStatusCode everywhere in HTTP logger (#13755)

This commit is contained in:
Harshavardhana
2021-11-24 13:53:11 -08:00
committed by GitHub
parent 932500e43d
commit fee3f88cb5
2 changed files with 6 additions and 3 deletions

View File

@@ -157,7 +157,7 @@ func (h *Target) startHTTPLogger() {
// Drain any response.
xhttp.DrainBody(resp.Body)
if resp.StatusCode != http.StatusOK {
if !acceptedResponseStatusCode(resp.StatusCode) {
switch resp.StatusCode {
case http.StatusForbidden:
h.config.LogOnce(ctx, fmt.Errorf("%s returned '%s', please check if your auth token is correctly set", h.config.Endpoint, resp.Status), h.config.Endpoint)