From 4ace33cc0479e8090169bdaf08418bf68a92a3d1 Mon Sep 17 00:00:00 2001 From: Ken Tsang Date: Mon, 19 Mar 2018 13:13:38 +0000 Subject: [PATCH] Add queue and task names to config --- app/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/config.py b/app/config.py index 04ae40492..d4ea01560 100644 --- a/app/config.py +++ b/app/config.py @@ -32,6 +32,7 @@ class QueueNames(object): CREATE_LETTERS_PDF = 'create-letters-pdf-tasks' CALLBACKS = 'service-callbacks' LETTERS = 'letter-tasks' + ANTIVIRUS = 'antivirus-tasks' @staticmethod def all_queues(): @@ -56,6 +57,7 @@ class TaskNames(object): DVLA_JOBS = 'send-jobs-to-dvla' PROCESS_INCOMPLETE_JOBS = 'process-incomplete-jobs' ZIP_AND_SEND_LETTER_PDFS = 'zip-and-send-letter-pdfs' + SCAN_FILE = 'scan-file' class Config(object):