From 11ae8d605c762fcf688cdd19438d137d5eeb2af3 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 16 Jul 2025 16:33:50 +0000 Subject: [PATCH] make it basic --- deployment/extractor_and_loader/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/extractor_and_loader/app.py b/deployment/extractor_and_loader/app.py index 0f75d76..9e5e023 100644 --- a/deployment/extractor_and_loader/app.py +++ b/deployment/extractor_and_loader/app.py @@ -1,14 +1,14 @@ """ A quick example of lambda working a function in python """ -from etl.read_stuff_from_s3_example import print_hello_from_etl_module +# from etl.read_stuff_from_s3_example import print_hello_from_etl_module def handler(event, context): print("Outside try statment") try: print("show me something.. anything...") s3_uri = event.get("file_location") - print_hello_from_etl_module() + # print_hello_from_etl_module() if not s3_uri: return { "statusCode": 400,