Tomtom QPS fix

Tomtom return 403 status code in the following scenarios:

- Forbidden
- Not authorized
- Account inactive
- Account over queries per second limit
- Account over rate limit
- Rate limit exceeded

So when we reach the QPS limit we receive a 403 instead of 429 so we
have to include the provider in the qps service to differentiate between
providers that returns 429 and special cases like tomtom
This commit is contained in:
Mario de Frutos
2018-10-03 14:21:55 +02:00
parent 247e9040dd
commit 61a27a9f9d
3 changed files with 13 additions and 14 deletions

View File

@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
setup(
name='cartodb_services',
version='0.20.0',
version='0.20.1',
description='CartoDB Services API Python Library',