From 2eab6bf78108f3afe4939c3ef24f0c3fa753ddf1 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 9 Aug 2017 15:13:36 +0100 Subject: [PATCH] Fix logo bucket name The app was uploading into ...live but then looking for the logos in ...production. The existing logos are in ...production --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 4232e2411..6664ea46b 100644 --- a/app/config.py +++ b/app/config.py @@ -135,7 +135,7 @@ class Live(Config): HTTP_PROTOCOL = 'https' STATSD_ENABLED = True CSV_UPLOAD_BUCKET_NAME = 'live-notifications-csv-upload' - LOGO_UPLOAD_BUCKET_NAME = 'public-logos-live' + LOGO_UPLOAD_BUCKET_NAME = 'public-logos-production' NOTIFY_ENVIRONMENT = 'live'