From 25d57091f296f116572c5b6dfbbe1eb97bc85a52 Mon Sep 17 00:00:00 2001 From: Zhonghui Hu Date: Thu, 21 Oct 2021 15:36:31 -0700 Subject: [PATCH] out_s3: make option auto_retry_requests default to be true Signed-off-by: Zhonghui Hu --- plugins/out_s3/s3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/out_s3/s3.c b/plugins/out_s3/s3.c index 547a7d5d6a7..857dd37bc79 100644 --- a/plugins/out_s3/s3.c +++ b/plugins/out_s3/s3.c @@ -2340,7 +2340,7 @@ static struct flb_config_map config_map[] = { }, { - FLB_CONFIG_MAP_BOOL, "auto_retry_requests", "false", + FLB_CONFIG_MAP_BOOL, "auto_retry_requests", "true", 0, FLB_TRUE, offsetof(struct flb_s3, retry_requests), "Immediately retry failed requests to AWS services once. This option " "does not affect the normal Fluent Bit retry mechanism with backoff. "