diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | archweb.wsgi | 11 |
2 files changed, 7 insertions, 5 deletions
@@ -5,6 +5,7 @@ local_settings.py archweb.db archweb.db-* +newrelic.key tags collected_static/ testing/ diff --git a/archweb.wsgi b/archweb.wsgi index 901ac98f..f8de2b49 100644 --- a/archweb.wsgi +++ b/archweb.wsgi @@ -14,14 +14,15 @@ os.chdir(base_path) using_newrelic = False try: + key_path = os.path.join(base_path, "newrelic.key") + if os.path.exists(key_path): + with open(key_path) as keyfile: + key = keyfile.read().strip() + os.environ["NEW_RELIC_LICENSE_KEY"] = key + import newrelic.agent from newrelic.api.exceptions import ConfigurationError try: - key_path = os.path.join(base_path, "newrelic.key") - if os.path.exists(key_path): - with open(key_path) as keyfile: - key = keyfile.read().strip() - os.environ["NEW_RELIC_LICENSE_KEY"] = key newrelic.agent.initialize(os.path.join(base_path, "newrelic.ini")) using_newrelic = True except ConfigurationError: |