Skip to content

Commit

Permalink
fix: deleted records handling
Browse files Browse the repository at this point in the history
  • Loading branch information
andyh565 committed Sep 12, 2024
1 parent d34b521 commit cefd05c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ def produce_deleted_records_from_events(self, delete_events: Iterable[Mapping[st
"id": event["subject_id"],
self.cursor_field: event["created_at"],
"updated_at": event["created_at"],
"deleted_message": event["message"],
"deleted_description": event["description"],
"deleted_message": event.get("message", None),
"deleted_description": event.get("description", None),
"shop_url": event["shop_url"],
}

Expand Down
1 change: 1 addition & 0 deletions python

0 comments on commit cefd05c

Please sign in to comment.