-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
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 Put Object SignatureDoesNotMatch error in 0.0.17-alpha #220
Comments
looks like we ended up with a duplicate |
@chinedufn , since the body has a content length, you don't need to set it explicitly. That's what's causing the duplicate header. That said, we shouldn't be duplicating it, that's a bug. But you can unblock yourself by removing the |
Awesome, thanks! |
Fixed in #222 |
|
Bug Report
Can't use S3 put object in 0.0.17-alpha. Works fine in 0.0.15-alpha.
Notably, I'm now using the
aws_config
andaws-sdk-s3
v0.0.17-alpha crates now.Using s3 0.0.15-alpha with
let s3_client = S3Client::from_env();
works just fine.Version
Platform
Description
I'm seeing
Error { code: "SignatureDoesNotMatch", message: "The request signature we calculated does not match the signature you provided. Check your key and signing method.", ... }
for:This worked fine for me in
0.0.15-alpha
, but is now broken in0.0.17-alpha
.Trace Logs
Trace Logs
The text was updated successfully, but these errors were encountered: