Commit 0bbc3dc30cd29afa149b11eeaa043a6858c39bb4
1 parent
e4ca4dcb0c
Exists in
master
Fixed typo in .ini path
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
flashy/wsgi_django.py
View file @
0bbc3dc
1 | 1 | import os |
2 | 2 | import newrelic.agent |
3 | -newrelic.agent.initialize('/some/path/newrelic.ini') | |
3 | +newrelic.agent.initialize('/etc/uwsgi/flashy.ini') | |
4 | 4 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "flashy.settings") |
5 | 5 | from django.core.wsgi import get_wsgi_application |
6 | 6 | application = get_wsgi_application() |