From 1c7fb41ca5acc80b69e863a2ef2495952f3398c6 Mon Sep 17 00:00:00 2001 From: Josh Burman Date: Wed, 3 Nov 2021 17:22:27 +0000 Subject: [PATCH] more env var changes and version change --- app/main.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/main.py b/app/main.py index 7636ecc..d2183d1 100644 --- a/app/main.py +++ b/app/main.py @@ -19,13 +19,13 @@ class ServiceListener(SqsListener): logging.info('Process complete for %s', service.file_name) def main(): - logging.info('Starting Solver Service (v0.3.2)...') + logging.info('Starting Solver Service (v0.4.1)...') listener = ServiceListener( 'measure-development-solver-ingest', - region_name=os.environ['SOLVER_AWS_REGION'], - aws_access_key=os.environ['SOLVER_AWS_ACCESS_KEY_ID'], - aws_secret_key=os.environ['SOLVER_AWS_SECRET_ACCESS_KEY'], - queue_url=os.environ['SOLVER_SQS_INGEST_QUEUE'] + region_name=os.environ['AWS_REGION'], + aws_access_key=os.environ['AWS_ACCESS_KEY_ID'], + aws_secret_key=os.environ['AWS_SECRET_ACCESS_KEY'], + queue_url=os.environ['SQS_QUEUE'] ) listener.listen()