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.
|
2017-02-05 21:24:28 +01:00
|
|
|
from __future__ import absolute_import
|
2014-02-03 21:43:52 +01:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
2017-02-05 21:24:28 +01:00
|
|
|
# check for the venv
|
|
|
|
from lib import sanity_check
|
|
|
|
sanity_check.check_venv(__file__)
|
|
|
|
|
|
|
|
import django
|
2014-02-03 21:43:52 +01:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
2016-11-14 11:03:06 +01:00
|
|
|
django.setup()
|
|
|
|
|
2015-08-21 00:30:50 +02:00
|
|
|
args = sys.argv[1:]
|
2016-11-22 01:44:16 +01:00
|
|
|
subprocess.Popen(['./manage.py', 'process_queue', '--all'] + args,
|
2015-11-24 07:01:35 +01:00
|
|
|
stderr=subprocess.STDOUT)
|