Skip to content

Commit 9433209

Browse files
committed
fix queue name
1 parent 191b96d commit 9433209

File tree

1 file changed

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

1 file changed

+1
-2
lines changed

pythonkr_backend/pythonkr_backend/settings/prod.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
CELERY_TASK_TIME_LIMIT = 30 * 60
8585
CELERY_RESULT_BACKEND = 'django-db'
8686

87-
print(f"CELERY_BROKER_URL: {CELERY_BROKER_URL}")
8887

8988
# django-celery-beat
9089
CELERY_BEAT_SCHEDULER = 'django_celery_beat.schedulers:DatabaseScheduler'
@@ -96,6 +95,6 @@
9695
'crawl-rss-feeds': {
9796
'task': 'curation.tasks.crawl_rss',
9897
'schedule': crontab(minute='*/10'), # Every 10 minutes
99-
'options': {'queue': 'default'}
98+
'options': {'queue': 'celery'}
10099
},
101100
}

0 commit comments

Comments
 (0)