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
For files > 5GB in size, the S3 API requires using a multipart copy. I recently had to work around this by monkeypatching Refile, but I'd love to have official support for it.
Happy to work on it as well if you have an idea of how it should be implemented.
I ended up overwriting #upload to pass content_length and use_multipart_copy to #copy_from, but that just enables multipart for every copy. Not sure if that is desirable for Refile in general.
The text was updated successfully, but these errors were encountered:
For files > 5GB in size, the S3 API requires using a multipart copy. I recently had to work around this by monkeypatching Refile, but I'd love to have official support for it.
Happy to work on it as well if you have an idea of how it should be implemented.
I ended up overwriting
#upload
to passcontent_length
anduse_multipart_copy
to#copy_from
, but that just enables multipart for every copy. Not sure if that is desirable for Refile in general.The text was updated successfully, but these errors were encountered: