From 40ce4da5dea7ee9c3b39fb4a2803369c47268ea4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20M=2E=20Sehnem?= Date: Thu, 10 Nov 2022 11:00:49 -0500 Subject: [PATCH] increase default window size --- setup.py | 2 +- tap_shopify/streams/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 88be23ee..afce90fe 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="tap-shopify", - version="1.4.10", + version="1.4.11", description="Singer.io tap for extracting Shopify data", author="Stitch", url="http://github.com/singer-io/tap-shopify", diff --git a/tap_shopify/streams/base.py b/tap_shopify/streams/base.py index 5f38d313..a71e2418 100644 --- a/tap_shopify/streams/base.py +++ b/tap_shopify/streams/base.py @@ -17,7 +17,7 @@ # We've observed 500 errors returned if this is too large (30 days was too # large for a customer) -DATE_WINDOW_SIZE = 1 +DATE_WINDOW_SIZE = 365 # We will retry a 500 error a maximum of 5 times before giving up MAX_RETRIES = 10