Open
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3879 +/- ##
==========================================
+ Coverage 26.12% 26.17% +0.04%
==========================================
Files 675 675
Lines 43892 43926 +34
==========================================
+ Hits 11468 11497 +29
- Misses 31361 31364 +3
- Partials 1063 1065 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
5bd8af8 to
e606562
Compare
This avoids leaking background resources between test runs and ensures worker goroutines are cleaned up on shutdown. Signed-off-by: Andrey Butusov <andrey@nspcc.io>
Replace the separate inWork/add sequence with atomic tryAdd. This closes a race where the same object could be scheduled more than once if concurrent checks observed it as not yet in work. Signed-off-by: Andrey Butusov <andrey@nspcc.io>
Start each policer cycle from a random CID/OID cursor instead of always from the beginning of local storage. A cycle now wraps once and finishes after the scan passes the initial random address again. This spreads checks across different parts of the object space after cluster-wide restarts and reduces duplicate work between nodes. Update policer tests to match the new cycle semantics and stop relying on cleanCycle as a universal completion signal. Closes #3765. Signed-off-by: Andrey Butusov <andrey@nspcc.io>
e606562 to
e0be392
Compare
roman-khimov
approved these changes
Mar 17, 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.
Closes #3765.