Skip to content

Commit f2e5f93

Browse files
committed
fix utc
1 parent d175eab commit f2e5f93

File tree

1 file changed

+2
-1
lines changed
  • pythonkr_backend/pythonkr_backend/settings

1 file changed

+2
-1
lines changed

pythonkr_backend/pythonkr_backend/settings/prod.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
CELERY_TASK_ALWAYS_EAGER = False
7777
CELERY_TASK_EAGER_PROPAGATES = False
7878
CELERY_TIMEZONE = "Asia/Seoul"
79+
CELERY_ENABLE_UTC = False
7980
CELERY_TASK_TRACK_STARTED = True
8081
CELERY_BROKER_URL = f"amqp://{CELERY_BROKER_USERNAME}:{CELERY_BROKER_PASSWORD}@localhost:5672/{CELERY_BROKER_VHOST}"
8182
CELERY_TASK_TIME_LIMIT = 30 * 60
@@ -93,4 +94,4 @@
9394
'schedule': crontab(minute='*/10'), # Every 10 minutes
9495
'options': {'queue': 'default'}
9596
},
96-
}
97+
}

0 commit comments

Comments
 (0)