Skip to content

Commit

Permalink
Add; s3 put object
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkjin99 committed Nov 5, 2023
1 parent 3adf408 commit b8c4987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b8c4987

Please sign in to comment.