Re: Graceful Reloading for Schema Changes - UWSGI - Gunicorn?

2015-04-16 Thread Roberto De Ioris
> > > Hello Djangonats, > > How do you reload Django script changes with UWSGI? I know `touch-reload > ` > exists with UWSGI however I was looking more into what uwsgi does when the > schema(s) in the models change? How do you

Re: Graceful Reloading for Schema Changes - UWSGI - Gunicorn?

2015-04-16 Thread Stephen J. Butler
I'm not familiar with uWSGI. On gunicorn you send it SIGHUP (kill -HUP pid) and it will reload w/o interrupting requests. Looks like uWSGI supports something similar: https://uwsgi-docs.readthedocs.org/en/latest/Management.html#signals-for-controlling-uwsgi On Thu, Apr 16, 2015 at 11:32 AM,

Graceful Reloading for Schema Changes - UWSGI - Gunicorn?

2015-04-16 Thread Shapath Neupane
Hello Djangonats, How do you reload Django script changes with UWSGI? I know `touch-reload ` exists with UWSGI however I was looking more into what uwsgi does when the schema(s) in the models change? How do you handle