We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f88f465 commit cdb691aCopy full SHA for cdb691a
1 file changed
rootfs/helmbroker/config.py
@@ -13,16 +13,16 @@
13
class Config:
14
DEBUG = bool(os.environ.get('DRYCC_DEBUG', True))
15
# Celery Configuration Options
16
- CELERY_TIMEZONE = "Asia/Shanghai"
17
- CELERY_ENABLE_UTC = True
18
- CELERY_TASK_SERIALIZER = 'pickle'
19
- CELERY_ACCEPT_CONTENT = frozenset([
+ timezone = "Asia/Shanghai"
+ enable_utc = True
+ task_serializer = 'pickle'
+ accept_content = frozenset([
20
'application/data',
21
'application/text',
22
'application/json',
23
'application/x-python-serialize',
24
])
25
- CELERY_TASK_TRACK_STARTED = True
26
- CELERY_TASK_TIME_LIMIT = 30 * 60
27
- CELERYD_MAX_TASKS_PER_CHILD = 200
28
- CELERY_TASK_RESULT_EXPIRES = 24 * 60 * 60
+ task_track_started = True
+ task_time_limit = 30 * 60
+ worker_max_tasks_per_child = 200
+ result_expires = 24 * 60 * 60
0 commit comments