From eac6d55fb3044977096ab63a2d8b27346602330e Mon Sep 17 00:00:00 2001 From: Weijian Zhang Date: Wed, 6 Jul 2022 16:13:47 -0700 Subject: [PATCH] out_s3: update S3 PutObjectSize to 1GB Signed-off-by: Weijian Zhang --- plugins/out_s3/s3.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/out_s3/s3.h b/plugins/out_s3/s3.h index 7b4695008f8..bb781d60ccc 100644 --- a/plugins/out_s3/s3.h +++ b/plugins/out_s3/s3.h @@ -41,7 +41,8 @@ #define MAX_FILE_SIZE 50000000000 #define MAX_FILE_SIZE_STR "50,000,000,000" -#define MAX_FILE_SIZE_PUT_OBJECT 50000000 +/* Allowed max file size 1 GB for publishing to S3 */ +#define MAX_FILE_SIZE_PUT_OBJECT 1000000000 #define DEFAULT_UPLOAD_TIMEOUT 3600