mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
13 lines
No EOL
334 B
Python
13 lines
No EOL
334 B
Python
BROKER_HOST = "db01.newsblur.com"
|
|
BROKER_PORT = 5672
|
|
BROKER_USER = "newsblur"
|
|
BROKER_PASSWORD = "newsblur"
|
|
BROKER_VHOST = "newsblurvhost"
|
|
|
|
CELERY_RESULT_BACKEND = "amqp"
|
|
|
|
CELERY_IMPORTS = ("apps.rss_feeds.tasks", )
|
|
CELERYD_CONCURRENCY = 1
|
|
CELERY_IGNORE_RESULT = True
|
|
CELERYD_MAX_TASKS_PER_CHILD = 100
|
|
CELERY_DISABLE_RATE_LIMITS = True |