-
Notifications
You must be signed in to change notification settings - Fork 3
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
Main #8
Open
tuurek
wants to merge
11
commits into
ARO-1208
Choose a base branch
from
main
base: ARO-1208
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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
Merging changes from Matti Lamppu * Add .gitattributes This file helps convert line endings correctly for windows users * Add requirements.txt to .gitignore * Add docker-compose setup for testing * Add support for django_auditlog - Support of django_auditlog is optional and must be enabled with an environment variable - Created a common interface that abstracts the custom database model and django_audtilog model - Added better typing - Refactored and formatted code - Added tests for LogEnties - Added and improved on documentation * Add support for old log entries without is_sent in additional_data * Simplify django_auditlog schema example * Fix docker compose testing setup and add a second configuration Configurations have to be selected using docker profiles, or with the included makefile scrips * Remove unused import * Change USE_DJANGO_AUDITLOG setting to an enum This allows adding more configurations more easily in the future.
Readme addition, time zone
BATCH_LIMIT controls how many logs are fetched during a single job CHUNK_SIZE controls how many logs are put into memory at once
This reverts commit d440e63. The solution required read access to logs for log writer, reverted.
Co-authored-by: Darius-Seputis <[email protected]>
…12) * Added missing import Generator * Fix to be able to use select_for_update together with select_related * eq self add only to select_related * removed select_for_update() * removed all instances of select_for_update in task py * testing of self --------- Co-authored-by: Darius-Seputis <[email protected]>
… broken tests. (#13) Co-authored-by: Tuure Korhonen <[email protected]>
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.
Merging changes for limiting the amount of changes read from the db at one time.