Commit ec5eaec7 by Feanil Patel

Stop celery workers using SIGINT instead of SIGTERM.

According to the documentation TERM should do a graceful shutdown:
http://celery.readthedocs.org/en/latest/userguide/workers.html#process-signals

but this is not actually the case:
https://groups.google.com/forum/#!topic/celery-users/t8g5KvIvQZ8

SIGINT on the other hand seems to do what we want.
parent d5a34e9c
......@@ -11,6 +11,7 @@ command={{ edxapp_venv_dir + '/bin/newrelic-admin run-program ' if w.monitor and
killasgroup=true
stopasgroup=true
stopwaitsecs=432000
stogsignal=INT
{% endfor %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment