2016-04-07 15:03:22 +02:00
|
|
|
#!/usr/bin/env python
|
2014-02-03 21:43:52 +01:00
|
|
|
|
|
|
|
# This script is only meant to be run from run-dev.py, which sets up the
|
|
|
|
# environment correctly and passes the correct arguments for manage.py. It is a
|
|
|
|
# separate script so that the import from zerver.worker.queue_processors (which
|
|
|
|
# is slow) can be done in parallel with the rest of the work in bringing up the
|
|
|
|
# dev server.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
|
|
from zerver.worker.queue_processors import get_active_worker_queues
|
|
|
|
|
|
|
|
queues = get_active_worker_queues()
|
|
|
|
|
2015-08-21 00:30:50 +02:00
|
|
|
args = sys.argv[1:]
|
2015-11-24 07:01:35 +01:00
|
|
|
subprocess.Popen(['python', 'manage.py', 'process_queue', '--all'] + args,
|
|
|
|
stderr=subprocess.STDOUT)
|