> I'm not sure if I'm misunderstanding the use of the vacuum option... > > When I start up uwsgi with the vacuum option enabled, starts up as I > expect, but an error is displayed: > > unlink(): No such file or directory [uwsgi.c line 959] > > Looking at the code in uwsgi.c it looks to be trying to remove the pid > file, which, if you have already removed it from previously stopping the > server, won't be there. Is this expected behavior? > > > Frank JANIA >
Hi Frank, the vacuum() function is called only on server exit. If you have removed the pidfile in your init.d/upstart/... script those error will be triggered. By the way, it is fully harmless, the vacuum procedure will go on normally even if all of the files are removed (included sockets) -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
