-
-
Notifications
You must be signed in to change notification settings - Fork 110
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
progress callback crash #134
Comments
I'm also hitting this same issue on Linux. The following code segfaults when it's run let (tx, _) = tokio::sync::mpsc::unbounded_channel::<()>();
let msg_handle2 = msg_handle.clone();
params.set_progress_callback_safe(move |_| {
Handle::current().block_on(async {
let _ = tx.send(());
});
});
|
Try somehow to use the progress callback without |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The crash happens only in release build on windows when using move closure (closure without move works)
Maybe related 969422c
The text was updated successfully, but these errors were encountered: