From e0e1fa03c530fed2ecc26a0a9ec00b0ec59c654e Mon Sep 17 00:00:00 2001 From: "alexander.pace@ligo.org" <alexander.pace@ligo.org> Date: Sun, 24 Nov 2019 13:33:09 -0600 Subject: [PATCH] Settings change Don't override LVALERT_OVERSEER_INSTANCE settings from envrionment variables. --- config/settings/container/playground.py | 8 -------- config/settings/container/test.py | 8 -------- 2 files changed, 16 deletions(-) diff --git a/config/settings/container/playground.py b/config/settings/container/playground.py index c6b3d8ca0..354f25b08 100644 --- a/config/settings/container/playground.py +++ b/config/settings/container/playground.py @@ -19,14 +19,6 @@ SEND_XMPP_ALERTS = True SEND_PHONE_ALERTS = False SEND_EMAIL_ALERTS = False -# Define correct LVAlert settings -LVALERT_OVERSEER_INSTANCES = [ - { - "lvalert_server": "lvalert-playground.cgca.uwm.edu", - "listen_port": 8001, - }, -] - # Add testserver to ALLOWED_HOSTS ALLOWED_HOSTS += ['testserver'] diff --git a/config/settings/container/test.py b/config/settings/container/test.py index 199239b85..0bdbe4838 100644 --- a/config/settings/container/test.py +++ b/config/settings/container/test.py @@ -54,14 +54,6 @@ SEND_PHONE_ALERTS = False SEND_EMAIL_ALERTS = False -# Define correct LVAlert settings -LVALERT_OVERSEER_INSTANCES = [ - { - "lvalert_server": "lvalert-test.cgca.uwm.edu", - "listen_port": 8001, - }, -] - # Set up Sentry for error logging sentry_dsn = get_from_env('DJANGO_SENTRY_DSN', fail_if_not_found=False) if sentry_dsn is not None: -- GitLab