From 989fbb094d1751e50b221e483a6512f747eb618a Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Wed, 17 Aug 2016 13:18:33 +0100 Subject: [PATCH] Missing the name on the aws start celery command - means that logs are branded as application:api not delivery. --- aws_run_celery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws_run_celery.py b/aws_run_celery.py index 1165af098..e1db882a2 100644 --- a/aws_run_celery.py +++ b/aws_run_celery.py @@ -6,5 +6,5 @@ import os # on aws get secrets and export to env os.environ.update(getAllSecrets(region="eu-west-1")) -application = create_app() +application = create_app("delivery") application.app_context().push()