Add new queue for callbacks

This commit is contained in:
venusbb
2017-12-13 10:57:08 +00:00
parent d18b81093c
commit 11152ab117
2 changed files with 3 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ class QueueNames(object):
NOTIFY = 'notify-internal-tasks'
PROCESS_FTP = 'process-ftp-tasks'
CREATE_LETTERS_PDF = 'create-letters-pdf'
CALLBACKS = 'service-callbacks'
@staticmethod
def all_queues():
@@ -46,6 +47,7 @@ class QueueNames(object):
QueueNames.RETRY,
QueueNames.NOTIFY,
QueueNames.CREATE_LETTERS_PDF,
QueueNames.CALLBACKS,
]