From 240d843a8b97596bb424f5f4412d3156c31373eb Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Thu, 4 Oct 2018 09:40:36 +0200 Subject: [PATCH] IMP `connector_walmart` increase the padding of fetch times to 10 minutes. Sometimes orders don't get imported, but after setting the import time back, they will be imported. Ultimately, we don't know why this is the case, but increasing this should help at the cost of having potentially more "previously imported" queue jobs. This should be a good trade off. --- connector_walmart/models/walmart_backend/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector_walmart/models/walmart_backend/common.py b/connector_walmart/models/walmart_backend/common.py index 2d4a9f3a..2a50dbe0 100644 --- a/connector_walmart/models/walmart_backend/common.py +++ b/connector_walmart/models/walmart_backend/common.py @@ -12,7 +12,7 @@ from ...components.api.walmart import Walmart _logger = getLogger(__name__) -IMPORT_DELTA_BUFFER = 60 # seconds +IMPORT_DELTA_BUFFER = 600 # seconds class WalmartBackend(models.Model):