mirror of https://github.com/scrapy/scrapy.git
Merge pull request #1289 from pawelmhm/dont_retry_400
[MRG+1] [settings/default_settings.py] dont retry 400
This commit is contained in:
commit
af0873746f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue