We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47dd177 commit b41b054Copy full SHA for b41b054
apps/common/management/commands/services/services/base.py
@@ -16,7 +16,7 @@ def __init__(self, **kwargs):
16
self.STOP_TIMEOUT = 10
17
self.max_retry = 0
18
self.retry = 3
19
- self.LOG_KEEP_DAYS = 7
+ self.LOG_KEEP_DAYS = int(CONFIG.get('LOG_RETENTION_DAYS', 7))
20
self.EXIT_EVENT = threading.Event()
21
22
@property
0 commit comments