Merge pull request #1289 from pawelmhm/dont_retry_400

[MRG+1] [settings/default_settings.py] dont retry 400
This commit is contained in:
Daniel Graña 2015-09-02 00:39:30 -03:00
commit af0873746f
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ REFERER_ENABLED = True
RETRY_ENABLED = True
RETRY_TIMES = 2 # initial response + 2 retries = 3 requests
RETRY_HTTP_CODES = [500, 502, 503, 504, 400, 408]
RETRY_HTTP_CODES = [500, 502, 503, 504, 408]
RETRY_PRIORITY_ADJUST = -1
ROBOTSTXT_OBEY = False