From 2aa647081714cdb555970e3314dd1528f0a7f188 Mon Sep 17 00:00:00 2001 From: Pea Tyczynska Date: Mon, 8 Jun 2020 17:14:16 +0100 Subject: [PATCH] Point API for staging at email and sms stubs for the soak tests. This is done to avoid sending real email and sms and incurring unnecessary charges while we run the soak tests. --- app/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config.py b/app/config.py index a7aff994a..4e13a3732 100644 --- a/app/config.py +++ b/app/config.py @@ -468,6 +468,9 @@ class Staging(Config): API_RATE_LIMIT_ENABLED = True CHECK_PROXY_HEADER = True REDIS_ENABLED = True + SES_STUB_URL = 'https://notify-email-provider-stub-staging.cloudapps.digital/ses' + MMG_URL = 'https://notify-sms-provider-stub-staging.cloudapps.digital/mmg' + FIRETEXT_URL = 'https://notify-sms-provider-stub-staging.cloudapps.digital/firetext' class Live(Config):