mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 13:46:03 +08:00
12 lines
424 B
Python
Vendored
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,
|
|
}
|
|
}
|