mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-25 18:24:30 +00:00
SSL handshaking hangs when doing too many parallel connections to S3
This commit is contained in:
parent
bcb31988f2
commit
63d583d9be
@ -102,7 +102,7 @@ class S3ImagesStore(object):
|
||||
|
||||
def _get_boto_bucket(self):
|
||||
from boto.s3.connection import S3Connection
|
||||
c = S3Connection(self.AWS_ACCESS_KEY_ID, self.AWS_SECRET_ACCESS_KEY)
|
||||
c = S3Connection(self.AWS_ACCESS_KEY_ID, self.AWS_SECRET_ACCESS_KEY, is_secure=False)
|
||||
return c.get_bucket(self.bucket, validate=False)
|
||||
|
||||
def _get_boto_key(self, key):
|
||||
|
Loading…
x
Reference in New Issue
Block a user