Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix sync imgs #345

Merged
merged 1 commit into from
Oct 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/lambda/sync-image/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def post_imgskey(key):
dt_now = datetime.now().strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z'

# Creaet board_id, ads_id from the event payload we got
board_id, ads_id, _ = key.split('/')
board_id, ads_id = key.split('/')

# Create new item in the dynamoDB
item = {
Expand All @@ -29,6 +29,7 @@ def post_imgskey(key):


def handler(event, context):
print(event)

# Get event payload and get imgs information
key = event['Records'][0]['s3']['object']['key']
Expand Down
Loading