From 6a7b0f802e8db1cff7eed972090260ed7e1350ea Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont Date: Mon, 30 Oct 2017 15:08:37 +0100 Subject: [PATCH] swh.lister.debian.tasks: add task_queue attribute --- swh/lister/debian/tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/swh/lister/debian/tasks.py b/swh/lister/debian/tasks.py index 39aa6a2..cdac167 100644 --- a/swh/lister/debian/tasks.py +++ b/swh/lister/debian/tasks.py @@ -8,6 +8,8 @@ from .lister import DebianLister class DebianListerTask(ListerTaskBase): + task_queue = 'swh_lister_debian' + def new_lister(self): return DebianLister()