Commit 0bbc3dc30cd29afa149b11eeaa043a6858c39bb4

Authored by Rohan Rangray
1 parent e4ca4dcb0c
Exists in master

Fixed typo in .ini path

Showing 1 changed file with 1 additions and 1 deletions Inline Diff

flashy/wsgi_django.py View file @ 0bbc3dc
import os 1 1 import os
import newrelic.agent 2 2 import newrelic.agent
newrelic.agent.initialize('/some/path/newrelic.ini') 3 3 newrelic.agent.initialize('/etc/uwsgi/flashy.ini')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "flashy.settings") 4 4 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "flashy.settings")
from django.core.wsgi import get_wsgi_application 5 5 from django.core.wsgi import get_wsgi_application
application = get_wsgi_application() 6 6 application = get_wsgi_application()
7 7