We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Archive uploads currently uses:
bucket() |> S3.put_object(key, File.read!(file_path), Keyword.get(opts, :meta, [])) |> ExAws.request!()
which reads the full file into memory, and passes it into S3.put_object/3
S3.put_object/3
We should change this to match what we do for firmware uploading where we stream the file to ExAWS.
ExAWS
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Archive uploads currently uses:
which reads the full file into memory, and passes it into
S3.put_object/3
We should change this to match what we do for firmware uploading where we stream the file to
ExAWS
.The text was updated successfully, but these errors were encountered: