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

database: adding customizable time_precision #974

Merged
merged 4 commits into from
Nov 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
typo fix
AAPohl authored Nov 14, 2024

Verified

This commit was signed with the committer’s verified signature.
giovanisleite Giovani Sousa
commit d79f42754c567dfe6db3ce4840f9de7fbe22a4a1
2 changes: 1 addition & 1 deletion database/__init__.py
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ def __init__(self, sh, *args, **kwargs):
if self._removeold_cycle == self._dump_cycle:
self._removeold_cycle += 2
self._precision = self.get_parameter_value('precision')
self._time_precision = set.get_parameter_value('time_precision')
self._time_precision = self.get_parameter_value('time_precision')
self.count_logentries = self.get_parameter_value('count_logentries')
self.max_delete_logentries = self.get_parameter_value('max_delete_logentries')
self.max_reassign_logentries = self.get_parameter_value('max_reassign_logentries')