Skip to content

Commit

Permalink
Add build to list of fields we canonicalize (singer-io#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
luandy64 authored and tmck-code committed Feb 3, 2022
1 parent e02dc11 commit 9bb06ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_shopify/streams/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def sync(self):
transaction_dict = transaction.to_dict()
replication_value = strptime_to_utc(transaction_dict[self.replication_key])
if replication_value >= bookmark:
for field_name in ['token', 'version', 'ack', 'timestamp']:
for field_name in ['token', 'version', 'ack', 'timestamp', 'build']:
canonicalize(transaction_dict, field_name)
yield transaction_dict

Expand Down

0 comments on commit 9bb06ff

Please sign in to comment.