From 4309f920622db4a6bafc9aa5bf29e01196361c81 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 12 Oct 2015 15:28:42 -0400 Subject: [PATCH] Pass worker errors through to the run-dev.py console. --- tools/run-dev-queue-processors | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/run-dev-queue-processors b/tools/run-dev-queue-processors index 3cd5e19f48..db01ce5798 100755 --- a/tools/run-dev-queue-processors +++ b/tools/run-dev-queue-processors @@ -17,4 +17,5 @@ queues = get_active_worker_queues() args = sys.argv[1:] for queue in queues: - subprocess.Popen(['python', 'manage.py', 'process_queue'] + args + [queue]) + subprocess.Popen(['python', 'manage.py', 'process_queue'] + args + [queue], + stderr=subprocess.STDOUT)