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 191b96d commit 9433209Copy full SHA for 9433209
pythonkr_backend/pythonkr_backend/settings/prod.py
@@ -84,7 +84,6 @@
84
CELERY_TASK_TIME_LIMIT = 30 * 60
85
CELERY_RESULT_BACKEND = 'django-db'
86
87
-print(f"CELERY_BROKER_URL: {CELERY_BROKER_URL}")
88
89
# django-celery-beat
90
CELERY_BEAT_SCHEDULER = 'django_celery_beat.schedulers:DatabaseScheduler'
@@ -96,6 +95,6 @@
96
95
'crawl-rss-feeds': {
97
'task': 'curation.tasks.crawl_rss',
98
'schedule': crontab(minute='*/10'), # Every 10 minutes
99
- 'options': {'queue': 'default'}
+ 'options': {'queue': 'celery'}
100
},
101
}
0 commit comments