We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 072ffe7 commit 58c1330Copy full SHA for 58c1330
plugins/out_http/http.c
@@ -276,7 +276,8 @@ static int http_post(struct flb_out_http *ctx,
276
flb_plg_error(ctx->ins, "%s:%i, HTTP status=%i",
277
ctx->host, ctx->port, c->resp.status);
278
}
279
- if (c->resp.status >= 400 && c->resp.status < 500 && c->resp.status != 429) {
+ if (c->resp.status >= 400 && c->resp.status < 500 &&
280
+ c->resp.status != 429 && c->resp.status != 408) {
281
flb_plg_warn(ctx->ins, "could not flush records to %s:%i (http_do=%i), "
282
"chunk will not be retried",
283
ctx->host, ctx->port, ret);
0 commit comments