weblate/examples/beat-settings.py
Michal Čihař 1e9503f55f Extend docs on more frequent commits
Issue #2433

Signed-off-by: Michal Čihař <michal@cihar.com>
2018-12-05 11:11:19 +01:00

12 lines
424 B
Python
Vendored

CELERY_BEAT_SCHEDULE = {
# Unconditionally commit all changes every 2 minutes
'commit': {
'task': 'weblate.trans.tasks.commit_pending',
# Ommiting hours will honor per component settings,
# otherwise components with no changes older than this
# won't be committed
'kwargs': {'hours': 0},
# How frequently to execute the job in seconds
'schedule': 120,
}
}