-
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
CustomizableSend is not Send, causing issues with spawning a task #892
Comments
Looks like this is a duplicate of smithy-lang/smithy-rs#2944 and fixed by smithy-lang/smithy-rs@cf95f48. I'm not sure why I'm still seeing the issue, let me check the changelog |
it hasn't been released into an SDK yet, we'll do that soon. |
fixed |
|
Fix verified. |
Describe the bug
When attempting to
tokio::spawn
a task that executes a customized AWS DynamoDB SDK request it fails to compile because it says that theCustomizableSend
is notSend
.Expected Behavior
I expect the
CustomizableSend
to beSend
, and would be able to be used across the.await
point in atokio::spawn
.Current Behavior
Full
cargo check
outputI suspect that the suggestion about using parentheses is an issue with rustc diagnostics.
Reproduction Steps
Cargo.toml
:src/main.rs
:Possible Solution
No response
Additional Information/Context
No response
Version
The text was updated successfully, but these errors were encountered: