mirror of https://github.com/scrapy/scrapy.git
Fix IMAGES_EXPIRES default value
The default value should be 90.
This commit is contained in:
parent
ec1c61504a
commit
f193c52acd
|
|
@ -42,7 +42,7 @@ class ImagesPipeline(FilesPipeline):
|
|||
# ImagesPipeline. They may be overridden by settings.
|
||||
MIN_WIDTH = 0
|
||||
MIN_HEIGHT = 0
|
||||
EXPIRES = 0
|
||||
EXPIRES = 90
|
||||
THUMBS = {}
|
||||
DEFAULT_IMAGES_URLS_FIELD = 'image_urls'
|
||||
DEFAULT_IMAGES_RESULT_FIELD = 'images'
|
||||
|
|
|
|||
Loading…
Reference in New Issue