最近在做celery时报MySQL backend does not support timezone-aware datetimes when USE_TZ is False.错误

Posted Jason_WangYing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最近在做celery时报MySQL backend does not support timezone-aware datetimes when USE_TZ is False.错误相关的知识,希望对你有一定的参考价值。

当setting.py中的CELERY_TIMEZONE设置的是非UTC的话,比如说’Asia/Shanghai’,且USE_TZ设置为False的话,那么启动定时任务的时候会报错,报错信息如下:

 raise ValueError("mysql backend does not support timezone-aware datetimes when USE_TZ is False.")
ValueError: MySQL backend does not support timezone-aware datetimes when USE_TZ is False.

解决方法:

第一种方法:setting.py中的USE_TZ需要设置为True(不推荐)
第二种方法(推荐):setting.py中增加:

# 避免时区的问题
CELERY_ENABLE_UTC = False
DJANGO_CELERY_BEAT_TZ_AWARE = False

以上是关于最近在做celery时报MySQL backend does not support timezone-aware datetimes when USE_TZ is False.错误的主要内容,如果未能解决你的问题,请参考以下文章

使用celery的backend异步获取结果

celery-2

Celery 在远程任务上使用 Django Result Backend

Celery提交任务出错?

celery框架

windows安装celery时报错