From dcb81dacb40e0eb0f02bb6f839f643b245cd3f14 Mon Sep 17 00:00:00 2001 From: Shizuo Fujita Date: Mon, 24 Aug 2026 13:40:21 +0900 Subject: [PATCH] out_s3: fix parameter description in checksum_algorithm and s3_metadata The descriptions of checksum_algorithm and s3_metadata were swapped, so fix them. Signed-off-by: Shizuo Fujita --- lib/fluent/plugin/out_s3.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fluent/plugin/out_s3.rb b/lib/fluent/plugin/out_s3.rb index 35e332b..55d385c 100644 --- a/lib/fluent/plugin/out_s3.rb +++ b/lib/fluent/plugin/out_s3.rb @@ -162,9 +162,9 @@ def initialize config_param :warn_for_delay, :time, default: nil desc "Arbitrary S3 tag-set for the object" config_param :tagging, :string, default: nil - desc "Arbitrary S3 metadata headers to set for the object" - config_param :checksum_algorithm, :string, default: nil desc "Indicates the algorithm you want Amazon S3 to use to create the checksum for the object (CRC32,CRC32C,SHA1,SHA256)" + config_param :checksum_algorithm, :string, default: nil + desc "Arbitrary S3 metadata headers to set for the object" config_param :s3_metadata, :hash, default: nil config_section :bucket_lifecycle_rule, param_name: :bucket_lifecycle_rules, multi: true do desc "A unique ID for this rule"