fix: update CELERY_timezone to use CONFIG.get_time_zone() for improved timezone handling
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run

This commit is contained in:
CaptainB 2025-07-21 18:43:43 +08:00
parent 04f3fc5213
commit 47dd177b7e

View File

@ -68,7 +68,7 @@ else:
}
}
CELERY_result_backend = CELERY_BROKER_URL
CELERY_timezone = CONFIG.TIME_ZONE
CELERY_timezone = CONFIG.get_time_zone()
CELERY_ENABLE_UTC = False
CELERY_task_serializer = 'pickle'
CELERY_result_serializer = 'pickle'