You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
testing: parlib: fix empty upload for small objects
For objects with file size less than 100 MiB, we use a direct PUT
request to send the data, rather than a multipart upload. However,
rather than passing the block of data that we already read from the file
(first_chunk), we are reading from the now exhausted file, so we always
upload empty data. Fix this so that we get correct uploads.
Signed-off-by: Stephen Brennan <[email protected]>
0 commit comments