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

Make sure AtMostOnceBarrier only releases once (or never) #4

Merged
merged 2 commits into from
Dec 20, 2024

Conversation

pencil
Copy link
Contributor

@pencil pencil commented Dec 20, 2024

I realized the implementation of incr(self, key, amount, maximum, ttl) assumes a default value of 0 if the key does not exist. This means, when the backend (e.g. Redis) loses its contents, we would assume every AtMostOnceBarrier never ran. To fix this, the key is now created with a value of -1 (instead of 0) and we only release if by incrementing by 1 we stay under the maximum of 0 - which can only be true if the previous value was -1 and not with the default of 0.

I also added some tests to confirm this bug existed and to confirm this PR fixes it.

@pencil pencil requested review from mchl-hess and dan-woz December 20, 2024 03:39
Copy link

@dan-woz dan-woz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tricky stuff.

@pencil pencil merged commit 0e6ce41 into main Dec 20, 2024
7 checks passed
@pencil pencil deleted the really-only-release-once branch December 20, 2024 20:30
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.

3 participants