File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ echo "Database Migrations:"
3030sudo -E -u deis python /app/manage.py migrate --noinput
3131
3232# spawn a gunicorn server in the background
33- sudo -E -u deis gunicorn -c /app/deis/gconf .py deis.wsgi &
33+ sudo -E -u deis gunicorn -c /app/deis/gunicorn/config .py deis.wsgi &
3434
3535python /app/manage.py load_db_state_to_k8s
3636
Original file line number Diff line number Diff line change 11import os
2+ from os .path import dirname , realpath
23import faulthandler
34faulthandler .enable ()
45
1516 except NotImplementedError :
1617 workers = 8
1718
18- pythonpath = os . path . dirname (os . path . dirname (os . path . realpath (__file__ )))
19+ pythonpath = dirname (dirname (dirname ( realpath (__file__ ) )))
1920timeout = 1200
2021pidfile = '/tmp/gunicorn.pid'
21- logger_class = 'deis.logging.Logging'
22+ logger_class = 'deis.gunicorn. logging.Logging'
2223loglevel = 'info'
2324errorlog = '-'
2425accesslog = '-'
File renamed without changes.
You can’t perform that action at this time.
0 commit comments