Skip to content
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
merged 7 commits into from
Oct 31, 2023

Conversation

ImplOfAnImpl
Copy link
Contributor

@ImplOfAnImpl ImplOfAnImpl commented Oct 27, 2023

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 use sleep 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 in p2p/src/net/default_backend/mod.rs

@ImplOfAnImpl ImplOfAnImpl force-pushed the attempt_to_fix_spuriously_failing_test branch from a592b91 to d58c313 Compare October 28, 2023 12:31
@ImplOfAnImpl ImplOfAnImpl marked this pull request as ready for review October 29, 2023 19:23
Copy link
Contributor

@TheQuantumPhysicist TheQuantumPhysicist left a 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.

@TheQuantumPhysicist
Copy link
Contributor

Please merge this only when we're ready to merge its base to master.

@ImplOfAnImpl ImplOfAnImpl force-pushed the p2p_v2_issues branch 3 times, most recently from ce50a48 to 3d3b1d9 Compare October 31, 2023 14:55
@ImplOfAnImpl ImplOfAnImpl marked this pull request as draft October 31, 2023 15:02
@ImplOfAnImpl ImplOfAnImpl force-pushed the attempt_to_fix_spuriously_failing_test branch from 6912fab to 46a722b Compare October 31, 2023 15:13
@ImplOfAnImpl ImplOfAnImpl marked this pull request as ready for review October 31, 2023 15:40
Fixes in p2p related to blocks order
@ImplOfAnImpl ImplOfAnImpl merged commit cf33e0e into p2p_v2_issues Oct 31, 2023
@ImplOfAnImpl ImplOfAnImpl deleted the attempt_to_fix_spuriously_failing_test branch October 31, 2023 16:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants