mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-15 01:32:20 -05:00
Ensure priority queue read by development machines. It's now a default queue in the config.
This commit is contained in:
@@ -190,6 +190,7 @@ class Development(Config):
|
||||
SQLALCHEMY_ECHO = False
|
||||
CELERY_QUEUES = Config.CELERY_QUEUES + [
|
||||
Queue('db-sms', Exchange('default'), routing_key='db-sms'),
|
||||
Queue('priority', Exchange('default'), routing_key='priority'),
|
||||
Queue('periodic', Exchange('default'), routing_key='periodic'),
|
||||
Queue('db-email', Exchange('default'), routing_key='db-email'),
|
||||
Queue('db-letter', Exchange('default'), routing_key='db-letter'),
|
||||
@@ -211,6 +212,7 @@ class Test(Config):
|
||||
STATSD_PORT = 1000
|
||||
CELERY_QUEUES = Config.CELERY_QUEUES + [
|
||||
Queue('periodic', Exchange('default'), routing_key='periodic'),
|
||||
Queue('priority', Exchange('default'), routing_key='priority'),
|
||||
Queue('db-sms', Exchange('default'), routing_key='db-sms'),
|
||||
Queue('db-email', Exchange('default'), routing_key='db-email'),
|
||||
Queue('db-letter', Exchange('default'), routing_key='db-letter'),
|
||||
|
||||
Reference in New Issue
Block a user