Skip to content
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

routing: use block_in_place() in drop impl #5931

Merged
merged 1 commit into from
Mar 11, 2024

Conversation

pronebird
Copy link
Contributor

@pronebird pronebird commented Mar 9, 2024

As described in tokio-rs/tokio#5843, current implementation of Drop in RouteManager would typically lead to panic.

In a multi-threaded runtime the better approach would be to use tokio::task::block_in_place. In essence, even better approach would be to avoid doing async calls from Drop and call stop() somewhere in the clean up routine of a parent scope, but such change would encompass a larger scope and beyond what I am currently looking to fix.

I scanned the code for current_thread_runtime and found none in the way of that Drop, so I think it should work but don't take my word for it.


This change is Reviewable

Copy link
Member

@dlon dlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. I followed this up with a non-blocking drop impl: #5934

@dlon dlon changed the base branch from main to routing-improvements March 11, 2024 12:04
@dlon dlon merged commit 0188e40 into mullvad:routing-improvements Mar 11, 2024
43 of 44 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants