Fix uwsgi startup

This commit is contained in:
2011-02-17 22:38:49 +00:00
parent 8cd05dc437
commit 1b11ec8978
2 changed files with 2 additions and 1 deletions

View File

@@ -7,5 +7,6 @@
<processes>5</processes>
<daemonize>./logs/uwsgi.log</daemonize>
<pidfile>./logs/uwsgi.pid</pidfile>
<vacuum/>
</uwsgi>

2
fabfile.py vendored
View File

@@ -196,7 +196,7 @@ def restart_celeryd():
def start_uwsgi():
with cd('%(path)s/dreddit-auth/' % env):
run('uwsgi -x auth_uwsgi.xml --vaccum' % env)
run('uwsgi -x auth_uwsgi.xml' % env)
def stop_uwsgi():