summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--archweb.wsgi11
2 files changed, 7 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 7ecfa38..5362f51 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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 901ac98..f8de2b4 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: