-
Notifications
You must be signed in to change notification settings - Fork 341
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
write_fmt fails inside spawned task #329
Comments
As a temporary hack, we could write first to a |
Oh lol, I like that. Sounds good! |
Going to mark this as "good first issue" so someone can pick this up! |
Isn't that what it's already doing? Lines 239 to 246 in 00d9364
|
Or do you mean to change the signature of
|
@Michael-J-Ward dang, you're right. Okay this may not be as straight forward as we'd like :/ |
It turns out that
Arguments
is non-Send
, which means passing it to a spawned Future may not work because the future itself isSend
.This is causing some bugs. Posting this for future reference.
The text was updated successfully, but these errors were encountered: