mirror of https://github.com/scrapy/scrapy.git
removed old setting from default_settings.py, updated doc of CONCURRENT_ITEMS setting
This commit is contained in:
parent
a4b728f2b2
commit
4f19115a80
|
|
@ -238,8 +238,8 @@ CONCURRENT_ITEMS
|
|||
|
||||
Default: ``100``
|
||||
|
||||
Maximum number of concurrent items to process in parallel (per domain) in the
|
||||
Item Processor (aka. Item Pipeline).
|
||||
Maximum number of concurrent items (per response) to process in parallel in the
|
||||
Item Processor (also known as the Item Pipeline).
|
||||
|
||||
.. setting:: COOKIES_DEBUG
|
||||
|
||||
|
|
|
|||
|
|
@ -118,9 +118,6 @@ ITEM_PROCESSOR = 'scrapy.item.pipeline.ItemPipelineManager'
|
|||
# Item pipelines are typically set in specific commands settings
|
||||
ITEM_PIPELINES = []
|
||||
|
||||
# max limit of items to process in parallel
|
||||
ITEMPIPELINE_CONCURRENTLIMIT = 0
|
||||
|
||||
LOG_ENABLED = True
|
||||
LOG_STDOUT = False
|
||||
LOGLEVEL = 'DEBUG'
|
||||
|
|
|
|||
Loading…
Reference in New Issue