Commit ae0523c2 by John Eskew

Enable deprecation warnings for Django 1.11 apps.

parent accae1ce
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
{% set edx_django_service_venv_bin = edx_django_service_venv_dir + "/bin" %} {% set edx_django_service_venv_bin = edx_django_service_venv_dir + "/bin" %}
{% if COMMON_ENABLE_NEWRELIC_APP %} {% if COMMON_ENABLE_NEWRELIC_APP %}
{% set executable = edx_django_service_venv_bin + '/newrelic-admin run-program ' + edx_django_service_venv_bin + '/gunicorn' %} {% set executable = ' -Wd ' + edx_django_service_venv_bin + '/newrelic-admin run-program ' + edx_django_service_venv_bin + '/gunicorn' %}
{% else %} {% else %}
{% set executable = edx_django_service_venv_bin + '/gunicorn' %} {% set executable = ' -Wd ' + edx_django_service_venv_bin + '/gunicorn' %}
{% endif %} {% endif %}
{% if COMMON_ENABLE_NEWRELIC_APP %} {% if COMMON_ENABLE_NEWRELIC_APP %}
......
[program:cms] [program:cms]
{% if COMMON_ENABLE_NEWRELIC_APP -%} {% if COMMON_ENABLE_NEWRELIC_APP -%}
{% set executable = edxapp_venv_dir + '/bin/newrelic-admin run-program ' + edxapp_venv_dir + '/bin/gunicorn' -%} {% set executable = ' -Wd ' + edxapp_venv_dir + '/bin/newrelic-admin run-program ' + edxapp_venv_dir + '/bin/gunicorn' -%}
{% else -%} {% else -%}
{% set executable = edxapp_venv_dir + '/bin/gunicorn' -%} {% set executable = ' -Wd ' + edxapp_venv_dir + '/bin/gunicorn' -%}
{% endif -%} {% endif -%}
command={{ executable }} -c {{ edxapp_app_dir }}/cms_gunicorn.py {{ EDXAPP_CMS_GUNICORN_EXTRA }} cms.wsgi command={{ executable }} -c {{ edxapp_app_dir }}/cms_gunicorn.py {{ EDXAPP_CMS_GUNICORN_EXTRA }} cms.wsgi
......
[program:lms] [program:lms]
{% if COMMON_ENABLE_NEWRELIC_APP -%} {% if COMMON_ENABLE_NEWRELIC_APP -%}
{% set executable = edxapp_venv_dir + '/bin/newrelic-admin run-program ' + edxapp_venv_dir + '/bin/gunicorn' -%} {% set executable = ' -Wd ' + edxapp_venv_dir + '/bin/newrelic-admin run-program ' + edxapp_venv_dir + '/bin/gunicorn' -%}
{% else -%} {% else -%}
{% set executable = edxapp_venv_dir + '/bin/gunicorn' -%} {% set executable = ' -Wd ' + edxapp_venv_dir + '/bin/gunicorn' -%}
{% endif -%} {% endif -%}
command={{ executable }} -c {{ edxapp_app_dir }}/lms_gunicorn.py lms.wsgi command={{ executable }} -c {{ edxapp_app_dir }}/lms_gunicorn.py lms.wsgi
......
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