Replies: 1 comment 1 reply
-
These tasks are the blocking task pool that Tokio itself creates. They're not async tasks, but tokio-console doesn't take that into consideration and so the warnings next to them are incorrect. There's a fix for this being worked on and it should make it into the next version of tokio-console. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Creating a multi-threaded runtime and spawning with
block_on()
results in manytokio::task::blocking
items intokio-console
with warnings next to them. Any tips with dealing with these? Is it a bug that they are in warning state? Any way to filter/etc.? Code + SS below:Beta Was this translation helpful? Give feedback.
All reactions