From 2eb83f62177257c31f218f8609e87b9fe935ab72 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 8b18fc25..4f4d60cc 100644 --- a/connector_walmart/models/walmart_backend/common.py +++ b/connector_walmart/models/walmart_backend/common.py @@ -11,7 +11,7 @@ from ...components.api.walmart import Walmart _logger = getLogger(__name__) -IMPORT_DELTA_BUFFER = 60 # seconds +IMPORT_DELTA_BUFFER = 600 # seconds class WalmartBackend(models.Model):