From 72e2d2a220eebd911b43d8bf0bfc1f69b229e6b6 Mon Sep 17 00:00:00 2001 From: Dan Mosora Date: Tue, 18 Dec 2018 16:07:04 +0000 Subject: [PATCH] Reduce date window to 1 across the board --- tap_shopify/streams/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_shopify/streams/base.py b/tap_shopify/streams/base.py index 58df215f..3a3841c9 100644 --- a/tap_shopify/streams/base.py +++ b/tap_shopify/streams/base.py @@ -16,7 +16,7 @@ # We've observed 500 errors returned if this is too large (30 days was too # large for a customer) -DATE_WINDOW_SIZE = 7 +DATE_WINDOW_SIZE = 1 # We will retry a 500 error a maximum of 5 times before giving up MAX_RETRIES = 5