# HG changeset patch # User Steve Losh # Date 1276444513 14400 # Node ID 83c03382b6fc86318955ea51fa37760eb84b5a7f # Parent 04f43fdb2423c0b3aed12fe90de315e1d5ec2c78 contrib/deploy: minor fixes diff -r 04f43fdb2423 -r 83c03382b6fc contrib/deploy/gunicorn.conf.py --- a/contrib/deploy/gunicorn.conf.py Sun Jun 13 11:07:12 2010 -0400 +++ b/contrib/deploy/gunicorn.conf.py Sun Jun 13 11:55:13 2010 -0400 @@ -3,8 +3,8 @@ bind = "127.0.0.1:8000" workers = 2 -daemon = False +daemon = True pidfile = "gunicorn.pid" logfile = "gunicorn.log" proc_name = "gunicorn-hgreview-myrepo" - +debug = False diff -r 04f43fdb2423 -r 83c03382b6fc contrib/deploy/wsgi.py --- a/contrib/deploy/wsgi.py Sun Jun 13 11:07:12 2010 -0400 +++ b/contrib/deploy/wsgi.py Sun Jun 13 11:55:13 2010 -0400 @@ -21,6 +21,6 @@ app.read_only = READ_ONLY app.debug = False -app.datastore = ReviewDatastore(ui, repo) +app.datastore = ReviewDatastore(_ui, repo) application = app