From 4f0c0dd8f2291dc062f826cbd992c0bdfb6f72a1 Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Wed, 11 May 2016 09:24:35 -0400 Subject: [PATCH] Fix issue with uwsgi controlled processes not restarting due to incorrect signal. --- templates/supervisor/app_supervisor.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/supervisor/app_supervisor.conf b/templates/supervisor/app_supervisor.conf index b0f37d9..553740b 100644 --- a/templates/supervisor/app_supervisor.conf +++ b/templates/supervisor/app_supervisor.conf @@ -2,7 +2,7 @@ [program:{{ uwsgi_app_service_name }}] user={{ web_server_group }} command={{ uwsgi_venv }}/bin/uwsgi --ini {{ uwsgi_config_path }}/{{ uwsgi_app_ini }} -stopsignal=TERM +stopsignal=QUIT stdout_logfile = {{ web_root_path }}/logs/supervisor/{{ app_name }}-application.log stdout_logfile_backups = 5 stderr_logfile = {{ web_root_path }}/logs/supervisor/{{ app_name }}-error.log