Skip to content

Commit

Permalink
testing lambda exe path
Browse files Browse the repository at this point in the history
  • Loading branch information
voynow committed Aug 24, 2024
1 parent a06f88f commit 7483c40
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,8 @@ def core_executor(user: UserRow) -> None:

def lambda_handler(event, context):
"""Main entry point for production workload"""
[core_executor(user) for user in list_users()]
if event:
print(event)
else:
print("No event received")
# [core_executor(user) for user in list_users()]

0 comments on commit 7483c40

Please sign in to comment.