From 7c87f763053c4fd432f50df814f68ea4237b609d Mon Sep 17 00:00:00 2001 From: Gabor Gyimesi Date: Tue, 25 Jul 2023 17:22:55 +0200 Subject: [PATCH] Fix linter issue --- extensions/aws/processors/PutS3Object.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/aws/processors/PutS3Object.cpp b/extensions/aws/processors/PutS3Object.cpp index a1405fd3935..9980fe5f12b 100644 --- a/extensions/aws/processors/PutS3Object.cpp +++ b/extensions/aws/processors/PutS3Object.cpp @@ -235,7 +235,8 @@ void PutS3Object::ageOffMultipartUploads(const CommonProperties &common_properti logger_->log_info("Found %d aged off pending multipart upload jobs in bucket '%s'", aged_off_uploads_in_progress->size(), common_properties.bucket); size_t aborted = 0; for (const auto& upload : *aged_off_uploads_in_progress) { - logger_->log_info("Aborting multipart upload with key '%s' and upload id '%s' in bucket '%s' due to reaching maximum upload age threshold.", upload.key, upload.upload_id, common_properties.bucket); + logger_->log_info("Aborting multipart upload with key '%s' and upload id '%s' in bucket '%s' due to reaching maximum upload age threshold.", + upload.key, upload.upload_id, common_properties.bucket); aws::s3::AbortMultipartUploadRequestParameters abort_params(common_properties.credentials, *client_config_); abort_params.setClientConfig(common_properties.proxy, common_properties.endpoint_override_url); abort_params.bucket = common_properties.bucket;