Skip to content

Commit

Permalink
Allow multipart uploads up to 250GB
Browse files Browse the repository at this point in the history
  • Loading branch information
boydgreenfield committed Jul 1, 2019
1 parent 7d34b4e commit 13d8629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onecodex/lib/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ def _s3_intermediate_upload(file_obj, file_name, fields, session, callback_url):
)

# if boto uses threads, ctrl+c won't work
config = TransferConfig(use_threads=False)
config = TransferConfig(use_threads=False, multipart_chunksize=26214400)

# let boto3 update our progressbar rather than our FASTX wrappers, if applicable
boto_kwargs = {}
Expand Down

0 comments on commit 13d8629

Please sign in to comment.