> I have a simple uWSGI setup with a mule process for background processing. > I've set up my own signal handlers in mule-brain script to handle SIGINT > in > the mule process. I was hoping this would allow my script to finish its > current task and exit after that, but it seems as though the uWSGI master > process sends SIGINT to the mule process, but then just goes ahead and > SIGKILLs the process right before the master process exits. > > Is it possible to prevent this behavior so my mule process can get a > chance > to gracefully exit when the whole uWSGI "service" is exiting? > > Thanks, > > -j > _______________________________________________ > uWSGI mailing list > [email protected] > http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi >
Hi, this patch should address the issue on INT signal: https://github.com/unbit/uwsgi/commit/aeb2fc4f883da7d5b8d5c3fb88bcd74f50ce987b Let me know -- Roberto De Ioris http://unbit.com _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
