-
Notifications
You must be signed in to change notification settings - Fork 198
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
Potential deadlock at the shutdown #939
Comments
I've also seen this when running One of our Also, the error message from the line above does not help as we have thread.join().unwrap_or_else(|e| {
if let Some(e) = e.downcast_ref::<&'static str>() {
println!("Error joining IO service event loop thread: {}", e);
} else {
println!("Error joining IO service event loop thread: Unknown error: {:?}", e);
}
}); |
@Thegaram I think your change is reasonable. Could you submit a PR to include this change? |
might be fixed by some commit. Close for now. Will reopen if shows up again |
Just ran into this issue on commit 28229f1 (branch The output is still I think it might be possible that we're occasionally trying to join the event loop thread from within itself. That might happen if the last reference to |
This is an issue that may non-deterministically occur when running out test scripts.
The text was updated successfully, but these errors were encountered: