> > I've been looking for a Python 3 + uWSGI (especially uwsgi) way to do > what https://crate.io/packages/ReloadWSGI does. Its feature is that > the old version of the app continues to run until the new version > loads correctly, so if you happen to save a syntax error the already > running, working app keeps going until your application becomes > loadable. Unfortunately the package requires Paste and only works on > Python 2, and does not use uWSGI. Is there an easy way to do that with > uWSGI yet? > >
check the --touch-chain-reload option of 1.9 for a "quick and dirty" way: https://github.com/unbit/uwsgi/issues/140 (latest posts) Otherwise you can have multiple instance swapping with the zerg mode. -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
