From 1f53af65b91eda186a6fb9b19c724cead62719d3 Mon Sep 17 00:00:00 2001 From: Javier Goizueta Date: Tue, 13 Dec 2016 11:32:22 +0100 Subject: [PATCH] Set number of http connection retries to 1 Change the maximum number of retries for connection to external services to 1. --- .../python/cartodb_services/cartodb_services/here/geocoder.py | 2 +- .../python/cartodb_services/cartodb_services/here/routing.py | 2 +- .../python/cartodb_services/cartodb_services/mapzen/geocoder.py | 2 +- .../cartodb_services/cartodb_services/mapzen/isochrones.py | 2 +- .../python/cartodb_services/cartodb_services/mapzen/routing.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/server/lib/python/cartodb_services/cartodb_services/here/geocoder.py b/server/lib/python/cartodb_services/cartodb_services/here/geocoder.py index b8a83aa..a3eb805 100644 --- a/server/lib/python/cartodb_services/cartodb_services/here/geocoder.py +++ b/server/lib/python/cartodb_services/cartodb_services/here/geocoder.py @@ -18,7 +18,7 @@ class HereMapsGeocoder(Traceable): DEFAULT_GEN = 9 READ_TIMEOUT = 60 CONNECT_TIMEOUT = 10 - MAX_RETRIES=0 + MAX_RETRIES=1 ADDRESS_PARAMS = [ 'city', diff --git a/server/lib/python/cartodb_services/cartodb_services/here/routing.py b/server/lib/python/cartodb_services/cartodb_services/here/routing.py index b6db071..3a04a3a 100644 --- a/server/lib/python/cartodb_services/cartodb_services/here/routing.py +++ b/server/lib/python/cartodb_services/cartodb_services/here/routing.py @@ -14,7 +14,7 @@ class HereMapsRoutingIsoline(Traceable): ISOLINE_PATH = '/routing/7.2/calculateisoline.json' READ_TIMEOUT = 60 CONNECT_TIMEOUT = 10 - MAX_RETRIES = 0 + MAX_RETRIES = 1 ACCEPTED_MODES = { "walk": "pedestrian", diff --git a/server/lib/python/cartodb_services/cartodb_services/mapzen/geocoder.py b/server/lib/python/cartodb_services/cartodb_services/mapzen/geocoder.py index 40c2351..1209388 100644 --- a/server/lib/python/cartodb_services/cartodb_services/mapzen/geocoder.py +++ b/server/lib/python/cartodb_services/cartodb_services/mapzen/geocoder.py @@ -15,7 +15,7 @@ class MapzenGeocoder(Traceable): BASE_URL = 'https://search.mapzen.com/v1/search' READ_TIMEOUT = 60 CONNECT_TIMEOUT = 10 - MAX_RETRIES = 0 + MAX_RETRIES = 1 def __init__(self, app_key, logger, base_url=BASE_URL): self._app_key = app_key diff --git a/server/lib/python/cartodb_services/cartodb_services/mapzen/isochrones.py b/server/lib/python/cartodb_services/cartodb_services/mapzen/isochrones.py index 295b146..f7f15fd 100644 --- a/server/lib/python/cartodb_services/cartodb_services/mapzen/isochrones.py +++ b/server/lib/python/cartodb_services/cartodb_services/mapzen/isochrones.py @@ -13,7 +13,7 @@ class MapzenIsochrones: BASE_URL = 'https://matrix.mapzen.com/isochrone' READ_TIMEOUT = 60 CONNECT_TIMEOUT = 10 - MAX_RETRIES = 0 + MAX_RETRIES = 1 ACCEPTED_MODES = { "walk": "pedestrian", diff --git a/server/lib/python/cartodb_services/cartodb_services/mapzen/routing.py b/server/lib/python/cartodb_services/cartodb_services/mapzen/routing.py index af372c3..0cb0c80 100644 --- a/server/lib/python/cartodb_services/cartodb_services/mapzen/routing.py +++ b/server/lib/python/cartodb_services/cartodb_services/mapzen/routing.py @@ -15,7 +15,7 @@ class MapzenRouting(Traceable): PRODUCTION_ROUTING_BASE_URL = 'https://valhalla.mapzen.com/route' READ_TIMEOUT = 60 CONNECT_TIMEOUT = 10 - MAX_RETRIES=0 + MAX_RETRIES=1 ACCEPTED_MODES = { "walk": "pedestrian",