From b8c4987588e9078c8c41615e37d82192b3b44db5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EB=AA=85=EC=A7=84?= Date: Mon, 6 Nov 2023 00:09:54 +0900 Subject: [PATCH] Add; s3 put object --- lambda_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda_function.py b/lambda_function.py index 5ebd2f0..1366d62 100644 --- a/lambda_function.py +++ b/lambda_function.py @@ -62,7 +62,7 @@ def handler(event: dict, context: dict) -> dict: student_id = body["student_id"] password = body["password"] res = asyncio.run(update_cache(student_id, password)) # 예약 현황 조회 - # put_cache_s3(res) + put_cache_s3(res) response = create_response(200, json.dumps({"data": res})) except AssertionError as e: