-
Notifications
You must be signed in to change notification settings - Fork 464
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
The server test key_value_timeout has a race condition causing hang #82
Comments
I remember reproducing this when you posted it, but I can't reproduce it anymore. It's possible that it was fixed via #76. Can you test it again? |
It still fails for me unfortunately. I know there are reasons for the timer auto-advancing, but from the point of view of the test writer it's surprising. I would expect that once |
This is still happening. My toolchain
I tried to debugged it a bit and found the code hangs in waiting to read the "world" back. Under further investigation I realized that the key in the DB is gone so the server returned
I was not able to come up with a solution but I would really appreciate if we can fix this. mini-redis is still the tutorial used by tokio official website. Newcomers would love to play around with it :) let's fix it! |
For the record, this test works if executed alone. It still hangs with |
For some reason this doesn't happen on a Linux VM, but my laptop reproduces it consistently.
This hangs almost straight away on my machine:
while cargo test key_value_timeout; do :; done
I added some prints and can see that when the test hangs, the background purge task was awakened at the time for the key to be purged, the key is purged, and then the request is made for the key, but it no longer exists as it just got purged. The test then hangs as
read_exact
is waiting for a longer response.It seems to be related to the auto-advancing of the clock when paused, but I am unsure where to go from here to investigate further.
https://github.com/tokio-rs/tokio/blob/8f10d816131868030996b5079fbc632750e69332/tokio/src/time/clock.rs#L83-L84
The text was updated successfully, but these errors were encountered: