Skip to content

Commit

Permalink
Fix default setting for Newrelic INI File in wsgi/app.py (mozilla#5709)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmac authored and jgmize committed May 16, 2018
1 parent da025c6 commit b5fa181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wsgi/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


if newrelic:
newrelic_ini = config('NEWRELIC_PYTHON_INI_FILE', default='False')
newrelic_ini = config('NEWRELIC_PYTHON_INI_FILE', default='')
if newrelic_ini:
newrelic.agent.initialize(newrelic_ini)
else:
Expand Down

0 comments on commit b5fa181

Please sign in to comment.