tests: fix TestNodeSetCatchpointCatchupMode data race#6574
Merged
algorandskiy merged 1 commit intoalgorand:masterfrom Mar 10, 2026
Merged
tests: fix TestNodeSetCatchpointCatchupMode data race#6574algorandskiy merged 1 commit intoalgorand:masterfrom
algorandskiy merged 1 commit intoalgorand:masterfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## master #6574 +/- ##
===========================================
- Coverage 63.60% 47.82% -15.78%
===========================================
Files 486 646 +160
Lines 67806 89431 +21625
===========================================
- Hits 43125 42767 -358
- Misses 21188 43852 +22664
+ Partials 3493 2812 -681
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
gmalouf
approved these changes
Mar 5, 2026
jannotti
approved these changes
Mar 10, 2026
This file contains hidden or 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
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.
Summary
Fixed a data race as seen here:
What happens is enable=true call stops goroutines but unblocks the caller waiting on
<-outChearlier then it actually completes, allowing the caller to callSetCatchpointCatchupMode. Rarely it these two goroutines race on WaitGroup's Add and Wait methods.Test Plan
Run locally
go test ./node -race -run TestNodeSetCatchpointCatchupMode -count=100(same as before the fix, no repro).