We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d175eab commit f2e5f93Copy full SHA for f2e5f93
pythonkr_backend/pythonkr_backend/settings/prod.py
@@ -76,6 +76,7 @@
76
CELERY_TASK_ALWAYS_EAGER = False
77
CELERY_TASK_EAGER_PROPAGATES = False
78
CELERY_TIMEZONE = "Asia/Seoul"
79
+CELERY_ENABLE_UTC = False
80
CELERY_TASK_TRACK_STARTED = True
81
CELERY_BROKER_URL = f"amqp://{CELERY_BROKER_USERNAME}:{CELERY_BROKER_PASSWORD}@localhost:5672/{CELERY_BROKER_VHOST}"
82
CELERY_TASK_TIME_LIMIT = 30 * 60
@@ -93,4 +94,4 @@
93
94
'schedule': crontab(minute='*/10'), # Every 10 minutes
95
'options': {'queue': 'default'}
96
},
-}
97
+}
0 commit comments