Removed the new queue name as it is not needed.

This commit is contained in:
Rebecca Law
2017-10-12 16:57:04 +01:00
parent fd2a7d3341
commit 401e209856
2 changed files with 2 additions and 5 deletions

View File

@@ -19,7 +19,6 @@ if os.environ.get('VCAP_SERVICES'):
class QueueNames(object):
CHECK_JOBS = 'check-job-status-tasks'
PERIODIC = 'periodic-tasks'
PRIORITY = 'priority-tasks'
DATABASE = 'database-tasks'
@@ -35,7 +34,6 @@ class QueueNames(object):
@staticmethod
def all_queues():
return [
QueueNames.CHECK_JOBS,
QueueNames.PRIORITY,
QueueNames.PERIODIC,
QueueNames.DATABASE,