generated from ghga-de/microservice-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Idempotence (GSI-626) #12
Merged
Merged
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
Also removes some outdated calls to stop the event loop
mephenor
requested changes
Feb 19, 2024
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.
There are some minor issues that should be addressed, but the rest looks good.
Pull Request Test Coverage Report for Build 8142443883Details
💛 - Coveralls |
mephenor
requested changes
Mar 4, 2024
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.
One small thing can still be improved
mephenor
approved these changes
Mar 4, 2024
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.
New Model
There is a new model,
NotificationRecord
. It has two fields:hash_sum
(str) andsent
(bool).No changes were made to the event subscriber. It still passes the notification event as it did before.
Inside the Notifier instance, the notification event is used to generate a NotificationRecord.
The hash sum from the record is used to determine if the notification has been encountered before, and
whether or not it was successfully sent.
If the notification has been seen before, the operation is complete.
If not, the record is added to the database.
The notification is then sent out, and afterwards the record is updated with
sent
set to True.New methods for Notifier
A few private methods were added to the Notifier class:
Tests
Unit tests were created to verify that the above new methods work as expected. There is a single tests that covers the three methods above, and then a general idempotence test. The latter naturally tests the transmission capability, so the old
test_transmission
test case was removed.