From 4d50b25ccc44696601be6b49d2e9ab70858607ac Mon Sep 17 00:00:00 2001 From: xiaobaowen Date: Thu, 9 May 2024 14:14:28 +0800 Subject: [PATCH] out_s3: fix stale log for max total_file_size Signed-off-by: xiaobaowen --- 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 d6c58d6bbba..a477c23ade3 100644 --- a/plugins/out_s3/s3.c +++ b/plugins/out_s3/s3.c @@ -700,7 +700,7 @@ static int cb_s3_init(struct flb_output_instance *ins, */ ctx->upload_chunk_size = ctx->file_size; if (ctx->file_size > MAX_FILE_SIZE_PUT_OBJECT) { - flb_plg_error(ctx->ins, "Max total_file_size is 50M when use_put_object is enabled"); + flb_plg_error(ctx->ins, "Max total_file_size is 1G when use_put_object is enabled"); return -1; } }