Merge pull request #3482 from alphagov/fix-docker-host-181498273

Fix letter functional tests to work in Docker
This commit is contained in:
Ben Thorner
2022-03-15 12:32:54 +00:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -432,7 +432,7 @@ class Development(Config):
ANTIVIRUS_ENABLED = os.getenv('ANTIVIRUS_ENABLED') == '1'
API_HOST_NAME = "http://localhost:6011"
API_HOST_NAME = os.getenv('API_HOST_NAME', 'http://localhost:6011')
API_RATE_LIMIT_ENABLED = True
DVLA_EMAIL_ADDRESSES = ['success@simulator.amazonses.com']