From f1b9666b0014ba24cad82b8d253ead5889e174c3 Mon Sep 17 00:00:00 2001 From: Andy Lu Date: Thu, 6 May 2021 14:59:45 +0000 Subject: [PATCH] Add `build` to list of fields we canonicalize --- tap_shopify/streams/transactions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_shopify/streams/transactions.py b/tap_shopify/streams/transactions.py index 6b6ccdcc..c6b56665 100644 --- a/tap_shopify/streams/transactions.py +++ b/tap_shopify/streams/transactions.py @@ -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