s3transfer icon indicating copy to clipboard operation
s3transfer copied to clipboard

Fix corrupted S3 downloads when file object in append mode

Open hhamalai opened this issue 5 years ago • 0 comments

The DownloadSeekableOutputManager with threading causes file corruption when the output file is opened in append mode.

The file object is still seekable, but only for reads, the writes will be written into the end of the file.

This is also the root cause for boto/boto3#1446, and fixes the issue.

hhamalai avatar Oct 20 '18 21:10 hhamalai