-
Notifications
You must be signed in to change notification settings - Fork 29
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
Attempt to fix spuriously failing test "dont_make_announcements_while_blocks_are_being_sent" #1309
Merged
ImplOfAnImpl
merged 7 commits into
p2p_v2_issues
from
attempt_to_fix_spuriously_failing_test
Oct 31, 2023
Merged
Attempt to fix spuriously failing test "dont_make_announcements_while_blocks_are_being_sent" #1309
ImplOfAnImpl
merged 7 commits into
p2p_v2_issues
from
attempt_to_fix_spuriously_failing_test
Oct 31, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a592b91
to
d58c313
Compare
Merged
ImplOfAnImpl
commented
Oct 30, 2023
TheQuantumPhysicist
approved these changes
Oct 30, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really have big feelings about this.
Please merge this only when we're ready to merge its base to master. |
ce50a48
to
3d3b1d9
Compare
…blocks_are_being_sent
…e_blocks_are_being_sent back to 100
…blocks_are_being_sent; use explicit delay.
6912fab
to
46a722b
Compare
…blocks are requested out of order
Fixes in p2p related to blocks order
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The test
dont_make_announcements_while_blocks_are_being_sent
was added in PR #1306; it was failing spuriously on my local machine from time to time (depending on the CPU load), which forced me to increase the number of initial blocks from 10 to 100. But then it failed on CI anyway.The behaviour that it checks is basically a small optimization, so I was seriously considering just removing the test. However I decided to try to make it more reliable. I tries several approaches; the final "solution" (which I'm not particularly fond of, to be honest) was to make
MessagingService::send_message
async, so that test implementations of it could use a bounded channel. The problematic test now uses the channel capacity of 1, and can usesleep
to slow down the rate at which BlockResponse messages are produced (their rate is what was causing the problem). Still, it doesn't guarantee that the spurious failures won't happen again, it just makes it less likely (hopefully much less).On the other hand,
MessagingService::send_message
being async will allow us to use a bounded channel for sync messages in production code too, which may be a good thing, see the Note/TODO inp2p/src/net/default_backend/mod.rs