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
S3 File uploads which call s3_initiate_multipart_upload() does not set user_meta.
let w = operator .writer_with("/test") .user_metadata(metadata) .await;
The user metadata is set when a multi-part uploaded object is written
Adding the following to s3_initiate_multipart_upload, seems to solve the issue:
// Set user metadata headers. if let Some(user_metadata) = args.user_metadata() { for (key, value) in user_metadata { req = req.header(format!("{X_AMZ_META_PREFIX}{key}"), value) } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
S3 File uploads which call s3_initiate_multipart_upload() does not set user_meta.
Steps to Reproduce
Expected Behavior
The user metadata is set when a multi-part uploaded object is written
Additional Context
Adding the following to s3_initiate_multipart_upload, seems to solve the issue:
Are you willing to submit a PR to fix this bug?
The text was updated successfully, but these errors were encountered: