-
Notifications
You must be signed in to change notification settings - Fork 246
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
aws-smithy-client 0.54.2 breaks athena client #736
Comments
I was able to reproduce, but only after setting use aws_sdk_athena::types::DisplayErrorContext;
// --snip --
Err(e) => panic!("{}", DisplayErrorContext(e)), That reveals the full error to be:
Setting the |
With the |
It turns out this issue was caused by a tiny mistake in recent PR. I have a fix in PR right now. |
The PR is merged and the fix is pending release. |
The fix has been released to crates.io - https://github.com/awslabs/smithy-rs/releases/tag/release-2023-02-14 |
|
Description of the bug
After running
cargo update
on one of my project, I had errors coming fromaws-smithy-client
at runtime.It has been updated to
0.54.2
, and by forcing it back to=0.54.1
everything went well.How to reproduce
Cargo.toml
main.rs
This codes panics with :
But with:
It works:
Note: I'm not sure if it's relevant but in my local environment, I use
AWS_PROFILE
environment variable.The text was updated successfully, but these errors were encountered: