Skip to content

Commit

Permalink
Added multipart_max_chunks
Browse files Browse the repository at this point in the history
Multipart upload chuncks are numbered between 1 and 10,000.
http://docs.aws.amazon.com/AmazonS3/latest/API/mpUploadUploadPart.html
  • Loading branch information
wiof committed Nov 25, 2015
1 parent fa95637 commit ef915a5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions S3/Config.py
Expand Up @@ -90,6 +90,7 @@ class Config(object):
mime_type = ""
enable_multipart = True
multipart_chunk_size_mb = 15 # MB
multipart_max_chunks = 10000 # Maximum chunks on AWS S3, could be different on other S3-compatible APIs
# List of checks to be performed for 'sync'
sync_checks = ['size', 'md5'] # 'weak-timestamp'
# List of compiled REGEXPs
Expand Down

0 comments on commit ef915a5

Please sign in to comment.