From 64898dd0d1c060e7e92b7d51e3673c5809b5d4f1 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sun, 19 Feb 2017 11:14:37 -0800 Subject: [PATCH] run-dev-queue-processors: Remove dead code. --- tools/run-dev-queue-processors | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/run-dev-queue-processors b/tools/run-dev-queue-processors index ffd64567d2..d8437d6c77 100755 --- a/tools/run-dev-queue-processors +++ b/tools/run-dev-queue-processors @@ -18,10 +18,6 @@ import django sys.path.append(os.path.join(os.path.dirname(__file__), '..')) django.setup() -from zerver.worker.queue_processors import get_active_worker_queues - -queues = get_active_worker_queues() - args = sys.argv[1:] subprocess.Popen(['./manage.py', 'process_queue', '--all'] + args, stderr=subprocess.STDOUT)