Skip to content
Snippets Groups Projects
Commit 9f48c59b authored by Sybren A. Stüvel's avatar Sybren A. Stüvel
Browse files

Changed some of the configuration defaults to more sensible values

We now collect 1000 lines of log instead of 10, and push activity and logs
every 15 resp. 30 seconds (instead of 1 resp. 5)
parent d14860fd
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,8 @@ changed functionality, fixed bugs).
- Include `exr-merge` task type in default configuration, which is required for progressive
rendering.
- Prevent outgoing queue saturation by not fetching a new task when the queue is too large.
- Changed some of the configuration defaults to more sensible values (mostly queueing up larger
amounts of logs before pushing to Flamenco Manager).
## Version 2.1.0 (2018-01-04)
......
......@@ -17,9 +17,9 @@ FETCH_TASK_FAILED_RETRY_DELAY = 10 # when we failed obtaining a task
FETCH_TASK_EMPTY_RETRY_DELAY = 5 # when there are no tasks to perform
FETCH_TASK_DONE_SCHEDULE_NEW_DELAY = 3 # after a task is completed
PUSH_LOG_MAX_ENTRIES = 10
PUSH_LOG_MAX_INTERVAL = datetime.timedelta(seconds=5)
PUSH_ACT_MAX_INTERVAL = datetime.timedelta(seconds=1)
PUSH_LOG_MAX_ENTRIES = 1000
PUSH_LOG_MAX_INTERVAL = datetime.timedelta(seconds=30)
PUSH_ACT_MAX_INTERVAL = datetime.timedelta(seconds=15)
ASLEEP_POLL_STATUS_CHANGE_REQUESTED_DELAY = 30
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment