From ec1dfde59860348d9b0c7a2c9125a28c1b9d77af Mon Sep 17 00:00:00 2001 From: CamileDahdah Date: Tue, 18 Oct 2022 15:00:34 -0500 Subject: [PATCH] fix: change incorrect docs for MinSizeBeforePartUpload property in S3 --- .../Services/S3/Custom/Transfer/TransferUtilityConfig.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sdk/src/Services/S3/Custom/Transfer/TransferUtilityConfig.cs b/sdk/src/Services/S3/Custom/Transfer/TransferUtilityConfig.cs index 2f37ea4bca28..7943ed3f388d 100644 --- a/sdk/src/Services/S3/Custom/Transfer/TransferUtilityConfig.cs +++ b/sdk/src/Services/S3/Custom/Transfer/TransferUtilityConfig.cs @@ -52,12 +52,8 @@ public TransferUtilityConfig() } /// - /// Gets or sets the minimum part size for upload parts in bytes. The default is 16 MB. - /// Decreasing the minimum part size causes - /// multipart uploads to be split into a larger number - /// of smaller parts. Setting this value too low has a negative effect - /// on transfer speeds, causing extra latency and network - /// communication for each part. + /// Gets or sets the minimum size required (in bytes) to enable multi-part upload. The default is 16 MB. + /// If the file size is greater than or equal to MinSizeBeforePartUpload, multi-part upload will be used. /// public long MinSizeBeforePartUpload {