1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 22:04:05 +00:00

SSL handshaking hangs when doing too many parallel connections to S3

This commit is contained in:
Daniel Graña 2011-12-08 13:54:16 -02:00
parent bcb31988f2
commit 63d583d9be

View File

@ -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):