> I made a few mods to my uwsgi ini file and tried a graceful reload > with SIGHUP. Seemed to do the right thing and most of my parameter > changes took effect, but a change to the pid file name did not take. > I had to stop then start uwsgi to get that to stick. This was on > version 1.9.9. > >
It is the expected behaviour, a bunch of parameters (mainly the ones related to daemonization and logging) are not changed on reload (otherwise the parent process could be faked). Pidfiles expecially are created on the first run as the master pid never changes (a reload is an on-the-fly execve) -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
