Skip to content

Commit

Permalink
fix: change incorrect docs for MinSizeBeforePartUpload property in S3
Browse files Browse the repository at this point in the history
  • Loading branch information
CamileDahdah authored and dscpinheiro committed Oct 26, 2022
1 parent 0b39f98 commit ec1dfde
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions sdk/src/Services/S3/Custom/Transfer/TransferUtilityConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,8 @@ public TransferUtilityConfig()
}

/// <summary>
/// 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.
/// </summary>
public long MinSizeBeforePartUpload
{
Expand Down

0 comments on commit ec1dfde

Please sign in to comment.