Open
Description
What crate(s) in this repo are involved in the problem?
tokio-console
What is the issue?
tokio-console shows a warning for a task having lost it's waker. But the task should be finished.
I think it's related to the task spawning an other task
How can the bug be reproduced?
The problem can be reproduced with the following sample application.
Connect to 127.0.0.1:5555 and it will spawn 2 tasks. The first one should be completed after 1 second. But in tokio-console this one will be shown as having lost it's waker.
use tokio::net::TcpListener;
#[tokio::main]
async fn main() {
console_subscriber::init();
if let Ok(listener) = TcpListener::bind("127.0.0.1:5555").await {
loop {
if let Ok((_, _)) = listener.accept().await {
let handle = tokio::task::spawn(async move {
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
tokio::task::spawn(async move {
tokio::time::sleep(tokio::time::Duration::from_secs(600)).await;
});
});
let _ = handle.await;
println!("done");
}
}
}
}
Logs, error output, etc
Versions
console crates versions:
tokio-console-warning v0.1.0 (/home/cedric/src/rust-test/tokio-console-warning)
├── console-subscriber v0.1.5
│ ├── console-api v0.2.0
tokio-console is built from git, version:
git describe
tokio-console-v0.1.4-5-g472ff52
Possible solution
No response
Additional context
No response
Would you like to work on fixing this bug?
maybe