HttpRunnerManager icon indicating copy to clipboard operation
HttpRunnerManager copied to clipboard

Flower的tasks页面中的received和started时间始终为UTC时间

Open kmlyc opened this issue 6 years ago • 0 comments

Django settings.py 配置如下(celery==3.1.26.post2,flower==0.9.2):

CELERY_ENABLE_UTC = True CELERY_TIMEZONE = 'Asia/Shanghai' BROKER_URL = 'amqp://guest:[email protected]:5672//' if DEBUG else 'amqp://guest:[email protected]:5672//' CELERYBEAT_SCHEDULER = 'djcelery.schedulers.DatabaseScheduler' CELERY_RESULT_BACKEND = 'djcelery.backends.database:DatabaseBackend' CELERY_ACCEPT_CONTENT = ['application/json'] CELERY_TASK_SERIALIZER = 'json' CELERY_RESULT_SERIALIZER = 'json'

kmlyc avatar Mar 07 '19 03:03 kmlyc