From 10e4dc50e05b245a616f2fe50029a83d3b50b579 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 16 Jul 2025 16:11:22 +0000 Subject: [PATCH] reupload image --- deployment/extractor_and_loader/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/extractor_and_loader/app.py b/deployment/extractor_and_loader/app.py index 08cb219..8de74a3 100644 --- a/deployment/extractor_and_loader/app.py +++ b/deployment/extractor_and_loader/app.py @@ -6,12 +6,12 @@ from etl.read_stuff_from_s3_example import print_hello_from_etl_module def handler(event, context): try: s3_uri = event.get("file_location") + print_hello_from_etl_module() if not s3_uri: return { "statusCode": 400, "body": "Missing 'file_location' in event" } - print_hello_from_etl_module() print(f"s3 uri is {s3_uri}") return {