Specify an endpoint_url when creating S3 resource service (#679)

* Specify an endppoint_url when creating S3 resource service

* code review

Co-authored-by: Zied ANDOLSI <zandolsi@prophesee.ai>
This commit is contained in:
Zied ANDOLSI 2022-07-13 16:24:53 +02:00 committed by GitHub
parent 6b56b3cfa2
commit 3f9cf400fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1548,7 +1548,8 @@ class _Boto3Driver(_Driver):
}
boto_session = boto3.Session(conf.key, conf.secret, aws_session_token=conf.token)
boto_resource = boto_session.resource('s3', conf.region)
endpoint = (('https://' if cfg.secure else 'http://') + cfg.host) if (conf.host and len(conf.host.split(':')) > 1) else None
boto_resource = boto_session.resource('s3', region_name=conf.region, endpoint_url=endpoint)
bucket = boto_resource.Bucket(bucket_name)
bucket.put_object(Key=filename, Body=six.b(json.dumps(data)))