Open
Description
What crate(s) in this repo are involved in the problem?
console-subscriber
What is the issue?
The console-subscriber
integration tests show flaky behavior locally.
The tests were originally introduced in #452.
How can the bug be reproduced?
Run all the framework
tests locally. Sometimes the self_wakes
test fails.
To reproduce this, I ran the tests in a loop until they failed. On my machine it typically takes under 5 minutes to produce a failure.
echo "Start!" && time while [ $? -eq 0 ]; do cargo test -p console-subscriber --test framework; done
Logs, error output, etc
No response
Versions
main
branch.console-subscriber
v0.2.0
Possible solution
It appears that the root cause for this issue is the one described in tokio-rs/tracing#2743.
Additional context
No response
Would you like to work on fixing this bug?
yes