Skip to content

Commit

Permalink
Merge pull request #158 from descarteslabs/fix/no-retry-429
Browse files Browse the repository at this point in the history
remove retry on 429
  • Loading branch information
samskillman authored Aug 10, 2017
2 parents e500754 + d61a579 commit 78cea85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion descarteslabs/services/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Service:
'HEAD', 'TRACE', 'GET', 'POST',
'PUT', 'OPTIONS', 'DELETE'
]),
status_forcelist=[429, 500, 502, 503])
status_forcelist=[500, 502, 503])

ADAPTER = HTTPAdapter(max_retries=RETRY_CONFIG)

Expand Down

0 comments on commit 78cea85

Please sign in to comment.