From 585fdd90768af1e6fb87b3e8b92f6d52b772b5c2 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 16 Mar 2020 16:10:25 +0000 Subject: [PATCH] Use the correct name for the contact list bucket MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Everything else is production. The bucket is currently called production. The fact that the CSV bucket is called `live-` is a legacy thing that’s hard to change. --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 85a72ccb9..9d470974e 100644 --- a/app/config.py +++ b/app/config.py @@ -178,7 +178,7 @@ class Live(Config): HTTP_PROTOCOL = 'https' STATSD_ENABLED = True CSV_UPLOAD_BUCKET_NAME = 'live-notifications-csv-upload' - CONTACT_LIST_UPLOAD_BUCKET_NAME = 'live-contact-list' + CONTACT_LIST_UPLOAD_BUCKET_NAME = 'production-contact-list' LOGO_UPLOAD_BUCKET_NAME = 'public-logos-production' MOU_BUCKET_NAME = 'notifications.service.gov.uk-mou' TRANSIENT_UPLOADED_LETTERS = 'production-transient-uploaded-letters'