contrib/deploy: minor fixes
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Sun, 13 Jun 2010 11:55:13 -0400 | 
    
    
        | parents | 04f43fdb2423 | 
    
        | children | e2948af5b2fb | 
    
        | branches/tags | deploy | 
    
        | files | contrib/deploy/gunicorn.conf.py contrib/deploy/wsgi.py | 
Changes
    
--- 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
--- 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